代码搜索:Secant

找到约 156 项符合「Secant」的源代码

代码结果 156
www.eeworm.com/read/486287/6539096

for secant.for

www.eeworm.com/read/386257/8759328

m secant.m

function root=Secant(f,a,b,eps) if(nargin==3) eps=1.0e-4; end f1=subs(sym(f),findsym(sym(f)),a); f2=subs(sym(f),findsym(sym(f)),b); if(f1==0) root=a; end if(f2==0) root=b; end
www.eeworm.com/read/426648/9007521

m secant.m

function out=Secant(x0,x1) fprintf(' \t\t Secant Method \n') fprintf(' \tsteps\tx0\t\tx1\t\tx2\t\tf(x0)\t\tf(x1)\t\tf(x2) \n') for i=1:5 if f(x0)*f(x1)
www.eeworm.com/read/426646/9007531

m secant.m

function out=Secant(x0,x1) fprintf(' \t\t Secant Method \n') fprintf(' \tsteps\tx0\t\tx1\t\tx2\t\tf(x0)\t\tf(x1)\t\tf(x2) \n') for i=1:5 if f(x0)*f(x1)
www.eeworm.com/read/426642/9007589

m secant.m

function out=Secant(x0,x1) fprintf(' \t\t Secant Method \n') fprintf(' \tsteps\tx0\t\tx1\t\tx2\t\tf(x0)\t\tf(x1)\t\tf(x2) \n') for i=1:5 if f(x0)*f(x1)
www.eeworm.com/read/283061/9044814

m secant.m

%f(x)= 10*x.^3+80*x.^2+6*x+a0时, [secant1.m] function sa=secant(x0,x1,epsilon,max) % NEWTON calculate the newton method approximation % x0,x1 is the initial value % epsilon is the tolerance for x
www.eeworm.com/read/179705/9342536

c secant.c

/* roots/secant.c * * Copyright (C) 1996, 1997, 1998, 1999, 2000 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of t
www.eeworm.com/read/365698/9850758

m secant.m

function root=Secant(f,a,b,eps) if(nargin==3) eps=1.0e-4; end f1=subs(sym(f),findsym(sym(f)),a); f2=subs(sym(f),findsym(sym(f)),b); if(f1==0) root=a; end if(f2==0) root=b; end
www.eeworm.com/read/364256/9917189

m secant.m

function [fx,fy,iter] = secant(func,limt) if length(limt)~=2 error('error input limt!'); end %falpha1 = subs(func,limt(1)); fdalpha1 = subs(diff(func),limt(1)); fdalpha2 = subs(diff(func),li
www.eeworm.com/read/360770/10079240

m secant.m

function [x,k] = secant (x0,x1,tol,m,f,dm) %---------------------------------------------------------------- % Usage: [x,k] = secant (x0,x1,tol,m,f,dm) % % Description: Apply the secant meth