代码搜索:Fitting
找到约 695 项符合「Fitting」的源代码
代码结果 695
www.eeworm.com/read/476392/6759263
m exa14.m
x = [ 0 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0];
y = [10 10 16 24 30 38 52 68 82 96 123];
p = polyfit(x, y, 2) % finds the coefficients of a polynomial
www.eeworm.com/read/257010/11960570
m exa14.m
x = [ 0 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0];
y = [10 10 16 24 30 38 52 68 82 96 123];
p = polyfit(x, y, 2) % finds the coefficients of a polynomial
www.eeworm.com/read/131500/14143267
txt 新建 文本文档 (2).txt
LI Yu
Academy of Management Science,Henan University,Kaifeng 475001,Henan,China
Abstract:The present paper studies the basic method of nonlinear regression analysis by computer,gives a program of
www.eeworm.com/read/131499/14143274
txt 新建 文本文档 (2).txt
LI Yu
Academy of Management Science,Henan University,Kaifeng 475001,Henan,China
Abstract:The present paper studies the basic method of nonlinear regression analysis by computer,gives a program of
www.eeworm.com/read/392443/8341971
m mrqcof.m
function [alpha,beta,chisq] = mrqcof(x,y,sig,ndata,a,ia,ma,nalp,funcs,model)
%
% Used by mrqmin to evaluate the linearized fitting matrix alpha,
% and vector beta as in 15.5.8 (Numerical Recipies),
www.eeworm.com/read/392443/8342034
m contents.m
%
% MATLAB Kriging Toolbox
% (version 3.0: f関rier 1998)
%-------------------------------------------------------
%
% VARIOGRAMS or STRUCTURE FUNCTIONS:
%
% vario2dr : variogram(s) of re
www.eeworm.com/read/334240/12615934
rd coef.mix.rd
\name{coef.mix}
\alias{coef.mix}
\title{Extract Mixture Model Coefficients}
\description{
\code{coef.mix} is a function which extracts mixture model coefficients
from objects returned by the
www.eeworm.com/read/432934/8562275
m dpoly.m
% 曲线拟合程序
function [xi,yi]=dpoly(n)
x=0:0.1:1;
y=[-.477 1.978 3.28 6.16 7.08 7.34 7.66 9.56 9.48 9.30 11.2];
p=polyfit(x,y,n);
xi=linspace(0,1,100);
yi=polyval(p,xi);
plot(x,y,'-o',xi,yi,'--');