A3DMathFct1DCombinationData
Fields
A3DUns32 |
m_uiSize |
A3DMathFct1D ** |
m_ppFunctions |
A3DDouble * |
m_pdCoeffs |
Detailed Description
-
struct
A3DMathFct1DCombinationData
Combination structure.
The following equation shows the result of a linear combination of 3 functions (m_uiSize is 2), where x is the result:
x = m_pdCoeffs[0] * m_ppFunctions[0] + m_pdCoeffs[1] * m_ppFunctions[1] + m_pdCoeffs[2]
- Version
- 2.0
Warning
Size of m_pdCoeffs is equal to size of m_ppFunctions +1.
Public Members
-
A3DUns32
m_uiSize
The size of m_ppFunctions.
-
A3DMathFct1D **
m_ppFunctions
Array of functions.