Jump to content

MATRIXLF

From EDM2
Revision as of 20:53, 25 June 2023 by Martini (talk | contribs) (Created page with "Matrix-elements structure. <PRE> typedef struct _MATRIXLF { FIXED fxM11; First element of first row.: FIXED fxM12; Second element of first row.: L...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Matrix-elements structure.

typedef struct _MATRIXLF {
  FIXED     fxM11;  /*  First element of first row. */
  FIXED     fxM12;  /*  Second element of first row. */
  LONG      lM13;   /*  Third element of first row. */
  FIXED     fxM21;  /*  First element of second row. */
  FIXED     fxM22;  /*  Second element of second row. */
  LONG      lM23;   /*  Third element of second row. */
  LONG      lM31;   /*  First element of third row. */
  LONG      lM32;   /*  Second element of third row. */
  LONG      lM33;   /*  Third element of third row. */
} MATRIXLF;

typedef   MATRIXLF   * PMATRIXLF ;