代码搜索:Bisection
找到约 219 项符合「Bisection」的源代码
代码结果 219
www.eeworm.com/read/386621/8734824
m bisection.m
function [mesh,eta] = bisection(mesh,eta,theta)
% BISECTION refines the triangulation using newest vertex bisection
%
% USAGE
% [mesh,eta] = bisection(mesh,eta,theta)
%
% INPUT
% mesh: curren
www.eeworm.com/read/429309/8811234
m bisection.m
clear all
clc
format('long');
M = 2;
a = 1;
b = 2;
k = 0;
while b-a > eps
x = (a + b)/2;
if x^2 > M
b = x;
else
a = x;
end
k = k + 1;
disp(['a=',
www.eeworm.com/read/426648/9007502
asv bisection.asv
function y=bisection(a,b)
fprintf('
for i=1:5
if (f(a)*f(b))
www.eeworm.com/read/426642/9007575
asv bisection.asv
function y=bisection(a,b)
fprintf('
for i=1:5
if (f(a)*f(b))
www.eeworm.com/read/181714/9240401
m bisection.m
function [a, b] = bisection(f, a0,b0, tol)
% Bisection to find root of f. Start interval [a0,b0]
% with f(a0)*f(b0) < 0 (is not checked)
% Repeat until the interval is smaller than tol
% V
www.eeworm.com/read/179705/9342529
c bisection.c
/* roots/bisection.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 o
www.eeworm.com/read/424281/10469179
c bisection.c
/* roots/bisection.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Reid Priedhorsky, Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under the t
www.eeworm.com/read/465059/7056943
dsp bisection.dsp
# Microsoft Developer Studio Project File - Name="bisection" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86)
www.eeworm.com/read/465059/7056944
dsw bisection.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################