代码搜索:数据拟合
找到约 10,000 项符合「数据拟合」的源代码
代码结果 10,000
www.eeworm.com/read/164057/10133134
txt 曲线拟合3.txt
10, 0.80
20, 3.80
30, 8.80
40, 15.80
50, 24.80
60, 35.80
70, 48.80
80, 63.80
90, 80.80
100, 99.80
110, 120.80
120, 143.80
130, 168.80
140, 195.80
150, 224.80
160, 255.80
170, 288.80
1
www.eeworm.com/read/273091/10927809
vi 最小二乘拟合.vi
www.eeworm.com/read/460037/7258583
txt 阿克玛拟合曲线.txt
OnMenuitem32780()
{ //阿克玛拟合曲线
// TODO: Add your command handler code here
CClientDC cdc(this);
float p[20],m[20],_m1;
float x,y,u,v,t1,t2;
POINT pt[20];
int n,i,j;
n=5;
pt[0].x=pt[0].y=n;
www.eeworm.com/read/448316/7535279
m 幂函数拟合批处理.m
directory_name = uigetdir('D:\','打开要处理的数据文件夹');
files = dir(directory_name);
files_length = length(files);
outpath = uigetdir('G:\','创建保存数据的文件夹');
for k = 3:files_length
%%%%%%%%%%%%%%%%%%%%%
www.eeworm.com/read/295984/8129997
pps 插值与拟合实验.pps
www.eeworm.com/read/245815/12779945
txt 曲线拟合算法.txt
class CFoldPoint
{public:
double X; double Y;
};
typedef CTypedPtrList CFoldPointList;
typedef CArray CDoubleArray;
三个函数,SPLine 调用另外两个。用时候直接调用SPLine函数,入口pList是已知离散点链表,pDes
www.eeworm.com/read/307174/13727238
pps 插值与拟合实验.pps
www.eeworm.com/read/479568/6688824
cpp 最小二乘拟合.cpp
#include
#include
#include
#include
#define N 7//N个点
#define T 1 //T次拟合
#define W 1//权函数
#define PRECISION 0.00001
float pow_n(float a,int n)
www.eeworm.com/read/408916/11365311