代码搜索:Fitting
找到约 695 项符合「Fitting」的源代码
代码结果 695
www.eeworm.com/read/467198/7020014
m spring.m
% Illustration of polynomial fitting
% J.-S. Roger Jang 1993
force = [1.1; 1.9; 3.2; 4.4; 5.9; 7.4; 9.2];
leng = [1.5; 2.1; 2.5; 3.3; 4.1; 4.6; 5.0];
x = (0:0.5:11)';
coef1 = polyfit(force, leng, 1)
www.eeworm.com/read/450258/7486710
dem fit.dem
#
# $Id: fit.dem,v 1.4 2000/11/23 18:19:12 lhecking Exp $
#
print "Some examples how data fitting using nonlinear least squares fit"
print "can be done."
print ""
pause -1 "first plotting the pure da
www.eeworm.com/read/449577/7500375
m uw_sb_smooth_unwrap.m
function [dph_smooth_series,F,model,energy,count]=uw_sb_smooth_unwrap(bounds,OPTIONS,G,W,dph,x1,varargin)
%UW_SB_SMOOTH_UNWRAP Unwrap by fitting a smooth function
%
% Andy Hooper, June 2007
www.eeworm.com/read/442927/7641772
m taylorexpansiondemo.m
% Animation for
% 1. Polynomial fitting
% 2. First, second, and third order Taylor expansion of a curve
%
% Roger Jang, June 3, 1996
x = linspace(1, 10, 10)';
y = [10 7 5 4 3.5 3.2 2 1 2 4]';
order
www.eeworm.com/read/196569/8074601
m predpls.m
function[pred]=predpls(x,y,xtest,ytest,compmax,aut);
if aut==2
aut=3;
end
yor=y;
[rx,cx]=size(x); ry=size(y,1); cy=1;
if aut==0;
df=0;
else;
df=1;
end;
A=compmax;
% FITTING
if
www.eeworm.com/read/143498/12870359
m taylor.m
% Animation for
% 1. Polynomial fitting
% 2. First, second, and third order Taylor expansion of a curve
%
% Roger Jang, June 3, 1996
x = linspace(1, 10, 10)';
y = [10 7 5 4 3.5 3.2 2 1 2 4]';
order
www.eeworm.com/read/143498/12870401
m spring.m
% Illustration of polynomial fitting
% J.-S. Roger Jang 1993
force = [1.1; 1.9; 3.2; 4.4; 5.9; 7.4; 9.2];
leng = [1.5; 2.1; 2.5; 3.3; 4.1; 4.6; 5.0];
x = (0:0.5:11)';
coef1 = polyfit(force, leng, 1)
www.eeworm.com/read/318488/13477505
m fitblood.m
function [errorres,g] = fitblood(p)
%function error = fitblood(p)
% fitting procedure for calulating A1..A3, labda1..labda2,tau
global blood_as blood_ts bloodpar
g=-p(3);
bloodpar=p;
blood_fit_a
www.eeworm.com/read/131315/5933902
ignore
-
\-
10
11
16
144
2
201
3
4014
6
7
77
a
about
across
after
al
al
all
allow
am
among
an
and
and/or
any
another
are
B
back
be
been
between
bits
by
dialect
do
et
extreme
facts
feeds
fitting
for
from
gene
www.eeworm.com/read/108242/6183686
c tee.c
/* tee - pipe fitting Author: Paul Polderman */
#include
#include
#include
#include
#include
#include
#define MAXFD 18
#de