曲线拟合到具有可变功效的3D多项式

时间:2019-05-21 11:58:00

标签: c# curve-fitting mathdotnet

我有3个数据集。 2是多项式本身(我们叫它们x和y),1是函数值(它将是z)。

多项式看起来像这样(假设两个维度的幂均为3):

z = a00 + a01*x + a02*x^2 + a03*x^3 + a10*y + a11*y*x + a12*y*x^2 ... etc

在准备近似“ a”值时,我需要能够设置每个维度的幂。

我不太了解CurveFitting函数如何与Math.NET Numerics一起使用,但是我已经尝试过Fit.LinearMultiDim和MultipleRegression.QR。我在初始化Func委托时遇到问题


    var zs = new double[]
    {
        //values here

    };

    var x = new double[]
    {
        //values here
    };

    var y = new double[]
    {
        //values here. But the amounts are equal
    };

    var design = Matrix<double>.Build.DenseOfRowArrays(Generate.Map2(x, y,(t, w) =>
    {
        var list = new List<double>();      //Can i get this working?
        for (int i = 0; i <= 3; i++)
        {
            for (int j = 0; j <= 3; j++)
            {
                list.Add(Math.Pow(t, j)*Math.Pow(w, i));
            }
        }
        return list.ToArray();
    }));

    double[] p = MultipleRegression.QR(design, Vector<double>.Build.Dense(zs)).ToArray();

因此,理想情况下,我需要能够通过某种形式的循环来构成函数,从而考虑到两个变量的最大功效。

UPD:该功能在任何轴上始终大于零

1 个答案:

答案 0 :(得分:0)

我认为我可以使用它。

代码如下:

    List<Func<double[], double>> ps = new List<Func<double[],double>>();

                for (int i = 0; i <= polynomialOrderFirstVal; i++)
                {
                    for (int j = 0; j <= polynomialOrderSecVal; j++)
                    {
                        var orderFirst = j;
                        var orderSecond = i;
                        ps.Add(d => Math.Pow(d[0], orderFirst) * Math.Pow(d[1],orderSecond));
                    }
                }
                var psArr = ps.ToArray();
                double[] coefs = Fit.LinearMultiDim(x, y, psArr);