代码搜索:Fitting
找到约 695 项符合「Fitting」的源代码
代码结果 695
www.eeworm.com/read/146470/12645491
er3 analyzer.er3
Parsing...
Parsing file analyzer.blx ...
Synthesizing and Optimizing...
Fitting...
%% ERROR count: 0 WARNING count: 0
www.eeworm.com/read/204090/15344713
m exp2_15.m
%curve fitting of sin wave
clc
clear
x=0:0.1:2*pi; %生成样本点x
y=sin(x)+0.5*rand(size(x)); %生成样本点y,通过随机矩阵
p=polyfit(x,y,3) %拟合出多项式(3阶)
y1=polyval(p,x); %求多项式的值
plot(x,y,'+',x,y1,'-r') %绘制多项式曲线,以验证结
www.eeworm.com/read/202224/15389229
m mm2003.m
% mm2003.m
x = [0 .1 .2 .3 .4 .5 .6 .7 .8 .9 1];
y = [-.447 1.978 3.28 6.16 7.08 7.34 7.66 9.56 9.48 9.30 11.2];
n = 2;
p = polyfit(x,y,n);
xi = linspace(0,1,100);
yi = polyval(p,xi);
pp = polyfit(x,
www.eeworm.com/read/202224/15389264
m mm2404.m
% mm2404.m
x = [0 .1 .2 .3 .4 .5 .6 .7 .8 .9 1];
y = [-.447 1.978 3.28 6.16 7.08 7.34 7.66 9.56 9.48 9.30 11.2]; % data
n = 2; % order of fit
p = polyfit(x,y,n) % find polynomial coefficients
xi = lin
www.eeworm.com/read/102840/15756463
m exp2_15.m
%curve fitting of sin wave
clc
clear
x=0:0.1:2*pi; %生成样本点x
y=sin(x)+0.5*rand(size(x)); %生成样本点y,通过随机矩阵
p=polyfit(x,y,3) %拟合出多项式(3阶)
y1=polyval(p,x); %求多项式的值
plot(x,y,'+',x,y1,'-r') %绘制多项式曲线,以验证结
www.eeworm.com/read/386034/8770614
score
------SCORE RESULT FOR FITTING------
RMSE= 35.9455
AR= 0.8337
NIP= 83
------SCORE RESULT FOR FORECASTING------
MONTH 6 7 8
RMSE
www.eeworm.com/read/384420/8871656
score
------SCORE RESULT FOR FITTING------
RMSE= 35.9455
AR= 0.8337
NIP= 83
------SCORE RESULT FOR FORECASTING------
MONTH 6 7 8
RMSE
www.eeworm.com/read/371640/9543644
score
------SCORE RESULT FOR FITTING------
RMSE= 35.9455
AR= 0.8337
NIP= 83
------SCORE RESULT FOR FORECASTING------
MONTH 6 7 8
RMSE
www.eeworm.com/read/355063/10298159
score
------SCORE RESULT FOR FITTING------
RMSE= 35.9455
AR= 0.8337
NIP= 83
------SCORE RESULT FOR FORECASTING------
MONTH 6 7 8
RMSE
www.eeworm.com/read/353879/10408878
m zuixiao.m
x=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20];
y=[24.948 24.768 24.804 24.732 24.840 24.768 24.732 24.840 25.056 25.020 24.696 24.876 24.840 24.948 24.948 24.984 25.236 24.876 25.128 25.02