R
Raj
Hello Coders- For calculating the Moment, Skew and Kurtosis, i found
the following function in the help of C++ builder; But i couln't
understand this, of how to use this;
What i have is the data in a 1-d array;, say, Data[200]
Can somebody tell me how to use this to find the MomentSkewKurtosis ?
Copied from C++ help;
extern PACKAGE void __fastcall MomentSkewKurtosis(const double * Data,
const int Data_Size, Extended &M1, Extended &M2, Extended &M3, Extended
&M4, Extended &Skew, Extended &Kurtosis);
Extended offers greater precision than other real types but is less
portable. Be careful using Extended if you are creating data files to
share across platforms.
Thanks
Raj
the following function in the help of C++ builder; But i couln't
understand this, of how to use this;
What i have is the data in a 1-d array;, say, Data[200]
Can somebody tell me how to use this to find the MomentSkewKurtosis ?
Copied from C++ help;
extern PACKAGE void __fastcall MomentSkewKurtosis(const double * Data,
const int Data_Size, Extended &M1, Extended &M2, Extended &M3, Extended
&M4, Extended &Skew, Extended &Kurtosis);
Extended offers greater precision than other real types but is less
portable. Be careful using Extended if you are creating data files to
share across platforms.
Thanks
Raj