• 大小: 0.03M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-03-28
  • 语言: C#
  • 标签: c#  

资源简介


可以最小二乘法拟合任意次数的曲线,绘制了原始折线和拟合曲线的对比图,有现成代码可供引用

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace NH//使用时,须修改为新项目的namespace
{
    class ecf
    {
        //拟合代码,引自星星分享的新浪博客,致谢
        //作者不能保证此代码的精确性,但已检验过无明显误差,无严重错误
        ///
        ///用最小二乘法拟合二元多次曲线
        ///

        ///已知点的x坐标集合
        ///已知点的y坐标集合
        ///已知点的个数
        ///方程的最高次数

        public static double[] MultiLine(double[] arrX double[] arrY int length int dimension)//二元多次线性方程拟合曲线
        {
            int n = dimension + 1;                  //dimension次方程需要求 dimension+1个 系数
            double[] Guass = new double[n n + 1];      //高斯矩阵 例如:y=a0+a1*x+a2*x*x
            for (int i = 0; i < n; i++)
            {
                int j;
                for (j = 0; j < n; j++)
                {
                    Guass[i j] = SumArr(arrX j + i length);
 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      11264  2016-04-08 22:15  NH\NH\bin\Debug\NH.exe

     文件      32256  2016-04-08 22:15  NH\NH\bin\Debug\NH.pdb

     文件      11600  2016-04-08 22:16  NH\NH\bin\Debug\NH.vshost.exe

     文件        490  2010-03-17 22:39  NH\NH\bin\Debug\NH.vshost.exe.manifest

     文件       4265  2016-04-08 22:15  NH\NH\ecf.cs

     文件       2035  2016-04-08 22:11  NH\NH\Form1.cs

     文件       2813  2016-04-08 22:06  NH\NH\Form1.Designer.cs

     文件       5817  2016-04-08 22:06  NH\NH\Form1.resx

     文件       3697  2016-04-08 22:06  NH\NH\NH.csproj

     文件        483  2016-04-07 21:29  NH\NH\Program.cs

     文件       1354  2016-04-07 21:29  NH\NH\Properties\AssemblyInfo.cs

     文件       2855  2016-04-07 21:29  NH\NH\Properties\Resources.Designer.cs

     文件       5612  2016-04-07 21:29  NH\NH\Properties\Resources.resx

     文件       1088  2016-04-07 21:29  NH\NH\Properties\Settings.Designer.cs

     文件        249  2016-04-07 21:29  NH\NH\Properties\Settings.settings

     文件        848  2016-04-07 21:29  NH\NH.sln

    ..A..H.     20992  2016-04-08 22:16  NH\NH.suo

     目录          0  2016-04-08 22:08  NH\NH\bin\Debug

     目录          0  2016-04-07 21:29  NH\NH\bin

     目录          0  2016-04-08 22:16  NH\NH\obj

     目录          0  2016-04-07 21:29  NH\NH\Properties

     目录          0  2016-04-08 22:06  NH\NH

     目录          0  2016-04-07 21:29  NH

----------- ---------  ---------- -----  ----

               107718                    23


评论

共有 条评论