0

私はC++コードを持っています。目的cで使用する必要があります。

double[,] x = new double[,]{{-1},{-0.8},{-0.6},{-0.4},{-0.2},{0},{0.2},{0.4},{0.6},{0.8},{1.0}};
double[] y = new double[]{0.223130,0.382893,0.582748,0.786628,0.941765,1.000000,0.941765,0.786628,0.582748,0.382893,0.223130};
double[] c = new double[]{0.3};

double epsf = 0;
double epsx = 0.000001;

int maxits = 0;
int info;

alglib::lsfitstate state;
alglib::lsfitreport rep;

double diffstep = 0.0001;    

//
// Fitting with weights
// (you can change weights and see how it changes result)
//

double[] w = new double[]{1,1,1,1,1,1,1,1,1,1,1};

alglib::lsfitcreatewf(x, y, w, c, diffstep, out state);
alglib::lsfitsetcond(state, epsf, epsx, maxits);
alglib::lsfitfit(state, function_cx_1_func, null, null);
alglib::lsfitresults(state, out info, out c, out rep);

私はすでに目的のファイルを最後に .mm で呼び出しています

しかし、違いエラーが発生します。(最初の行 - vars を初期化するときに期待される式)。

私はできません。しかし、私はこの1つの機能しか必要としません。

これがこの質問の解決策になることを願っています。 https://gis.stackexchange.com/questions/74567/math-algorithm-for-n-amount-points-in-objective-c

4

1 に答える 1