cloudflight
2024-05-07 2646029d2b97f6835062d45d2cfa632838c527ca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Windows.Forms;
using MathNet.Numerics.LinearAlgebra.Double; // 引入 Math.NET Numerics 库进行多项式拟合
using MathNet.Numerics;
using System.IO;
using System.Xml.Serialization;
using System.Xml.Linq;
using CloudWaterNetwork.建模;
using static System.Windows.Forms.LinkLabel;
namespace CloudWaterNetwork.建模
{
    internal class CurveParam
    {
        public List<double[]> dataPoints; // 存储样本数据点
        public DenseVector coefficients; // 存储多项式系数
        public int degree = 2; // 默认为二次多项式
    }
    class CurvePump
    {
        public CurveParam[] curves = new CurveParam[3];
    }
}