代码搜索:Approximation
找到约 1,542 项符合「Approximation」的源代码
代码结果 1,542
www.eeworm.com/read/349111/10848965
m wtlspr.m
function [x,info,dh] = wtlspr(d,w,m,opt)
% WTLSPR - Weighted Total Least Squares approximation
% by the algorithm of Premoli-Rastelo (Algorithm 2.2).
%
% D = [d1 ... dN] - data matrix, sd := size(D,1)
www.eeworm.com/read/349111/10848966
m wtls.m
function [x,M,dh] = wtls(d,w,m)
% WTLS - Weighted Total Least Squares approximation
%
% [x,M,dh] = wtls(d,w,m)
%
% D = [d1 ... dN] - data matrix, sd := size(D,1)
% W - sd x N matrix (EWTLS case)
%
www.eeworm.com/read/349111/10848974
m mwtlsdh.m
function m = mwtlsdh(d,w,dh)
% MWTLSDH - Weighted Total Least Squares misfit computation.
% [M,DH] = MWTLSDH(D,W,DH) gives the WTLS misfit M achived by
% the data approximation DH.
%
% See the help of
www.eeworm.com/read/349102/10852671
m fuzzy_appx.m
% a function approximation using fuzzy
% written by: NKN (C) -2006 : wineviruse@yahoo.com
clc
clear all
close all
%
% ** Design a fuzzy system to approximate a function
% the function
www.eeworm.com/read/417309/10995621
txt 08-33.txt
>> syms x
>> g = exp(x*sin(x))
>> g = exp(x*sin(x));
>> t = taylor(g,12,2);
>> xd = 1:0.05:3; yd = subs(g,x,xd);
>> ezplot(t, [1,3]); hold on;
>> plot(xd, yd, '-.')
>> title('Tayl
www.eeworm.com/read/416510/11023087
cpp linearapprox.cpp
//直线拟合
#include"LinearApprox.h"
void LinearApprox::Approx(double x[],double y[],int len)
{
double A1=0,B1=0,C1=0;
double A2=0,B2=0,C2=0;
double a,b;
A1=len;
for(int i=0;i
www.eeworm.com/read/212797/6962532
m~ vtb3.m~
% VTB3
%
% VTB3_1 Impulse response of a SDOF system.
% VTB3_2 Step response of a SDOF system.
% VTB3_3 Fourier Series approximation to a triangle wave.
% VTB3_4 Response spectrum for a SDOF system.
www.eeworm.com/read/468644/6986152
m alg022.m
% FIXED-POINT ALGORITHM 2.2
%
% To find a solution to p = g(p) given an
% initial approximation p0
%
% INPUT: initial approximation p0; tolerance TOL;
% maximum number of iterati
www.eeworm.com/read/468652/6986198
m alg023.m
% NEWTON-RAPHSON ALGORITHM 2.3
%
% To find a solution to f(x) = 0 given an
% initial approximation p0:
%
% INPUT: initial approximation p0; tolerance TOL;
% maxi
www.eeworm.com/read/272224/7096289
m vtb3.m
function vtb3
% VTB3
%
% VTB3_1 Impulse response of a SDOF system.
% VTB3_2 Step response of a SDOF system.
% VTB3_3 Fourier Series approximation to a triangle wave.
% VTB3_4 Response spectrum for a