代码搜索:Regula
找到约 21 项符合「Regula」的源代码
代码结果 21
www.eeworm.com/read/434325/7874862
m regula.m
function [c,yc,err,P] = regula(f,a,b,delta,epsilon,max1)
%---------------------------------------------------------------------------
%REGULA The Regula-Falsi method is used to locate a root.
% S
www.eeworm.com/read/305390/13772282
m regula.m
function [c,err,yc]=regula(f,a,b,delta,epsilon,max1)
%Input - f is the function
% - a and b are the left and right endpoints
% - delta is the tolerance for the zero
% -
www.eeworm.com/read/152112/12139044
m regula.m
function [c,err,yc]=regula(f,a,b,delta,epsilon,max1)
%Input - f is the function input as a string 'f'
% - a and b are the left and right endpoints
% - delta is the tolerance for the zero
%
www.eeworm.com/read/151556/12201352
m regula.m
function [c,err,yc]=regula(f,a,b,delta,epsilon,max1)
%Input - f is the function input as a string 'f'
% - a and b are the left and right endpoints
% - delta is the tolerance for the zero
%
www.eeworm.com/read/222288/14697963
m regula.m
function [c,err,yc]=regula(f,a,b,delta,epsilon,max1)
%Input - f is the function
% - a and b are the left and right endpoints
% - delta is the tolerance for the zero
% -
www.eeworm.com/read/172473/9706204
m regula.m
function [c,err,yc]=regula(f,a,b,delta,epsilon,max1)
%Input - f is the function input as a string 'f'
% - a and b are the left and right endpoints
% - delta is the tolerance for the zero
%
www.eeworm.com/read/449131/7517923
m regulafalsi.m
function [a, b, x, ithist, iflag] = regulafalsi( f, a, b, tolf, tolx, maxit )
%
% function [a, b, x, ithist, iflag] = regulafalsi( f, a, b, tolf, tolx, maxit )
%
% use Regula Falsi to compute an app
www.eeworm.com/read/122492/6065746
java improvedregulafalsirootfinder.java
package numbercruncher.mathutils;
/**
* The root finder class that implements the
* improved regula falsi algorithm.
*/
public class ImprovedRegulaFalsiRootFinder
extends RegulaFalsiRoo
www.eeworm.com/read/122492/6065850
java~1~ improvedregulafalsirootfinder.java~1~
package numbercruncher.mathutils;
/**
* The root finder class that implements the
* improved regula falsi algorithm.
*/
public class ImprovedRegulaFalsiRootFinder
extends RegulaFalsiRootFinder
www.eeworm.com/read/122492/6065759
java regulafalsirootfinder.java
package numbercruncher.mathutils;
/**
* The root finder class that implements the regula falsi algorithm.
*/
public class RegulaFalsiRootFinder
extends RootFinder {
private static fina