Kaydet (Commit) 36941076 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Make phi() and integralPhi() static and public

Needed for the NORMDIST() OpenCL implementation test doc.

Change-Id: I40f0d5d7ccf5963fa47d6648873ab23f8adf7aea
üst 1ecf795f
...@@ -737,12 +737,12 @@ void ScForecast(); ...@@ -737,12 +737,12 @@ void ScForecast();
void ScNoName(); void ScNoName();
void ScBadName(); void ScBadName();
// Statistics: // Statistics:
double phi(double x);
double integralPhi(double x);
double taylor(const double* pPolynom, sal_uInt16 nMax, double x); double taylor(const double* pPolynom, sal_uInt16 nMax, double x);
double gauss(double x); double gauss(double x);
public: public:
static SC_DLLPUBLIC double phi(double x);
static SC_DLLPUBLIC double integralPhi(double x);
static SC_DLLPUBLIC double gaussinv(double x); static SC_DLLPUBLIC double gaussinv(double x);
private: private:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment