代码搜索:Newton-Raphson

找到约 98 项符合「Newton-Raphson」的源代码

代码结果 98
www.eeworm.com/read/461236/7231510

m solve_diode_equation.m

function [x] = solve_diode_equation(A, B, C, x) % Function used to solve the diode equation % which is in the form Ae^{Bx}+x+C=0 % using the Newton-Raphson method tolerance = 1e-25; max_iter =
www.eeworm.com/read/410905/11265493

txt 本月计划.txt

2008年10月份工作和学习计划 10月份还剩下20天,在这接下来的二十天中为了更好的完成课题和找工作的任务,初步制定以下的计划 找工作方面: 职位确定:机械工程师:从事特定机械的设计、制造过程的控制以及机械设备和动力设备的维护 机电工程师:负责机电设备的设计、安装、调试和维护 CNC工程师 机械设计师 地点:深圳、北京、上 ...
www.eeworm.com/read/436207/1850629

m newton.m

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % solving constraint optimization problem using Newton-Raphson method % % Eric Xing % UC Berkeley % Jan 15, 2002 % %%%%
www.eeworm.com/read/456224/6278889

m bez_sq_err.m

% Construct the Bezier Least Square Curve % First the parameter has to be deteremined % Using a Newton-Raphson Technique. Then the % corresponding relation is estimated function returnvalue = Be
www.eeworm.com/read/437018/1839135

c niinit.c

/* * Copyright (c) 1985 Thomas L. Quarles */ /* * NIinit(nistruct,loadpkg) * * Initialize the Numerical iteration package to perform Newton-Raphson * iterations on a sparse
www.eeworm.com/read/456224/6278709

m bez_sq_err.m

% Construct the Bezier Least Square Curve % First the parameter has to be deteremined % Using a Newton-Raphson Tecnique. Then the % corresponding relation is estimated function returnvalue = Bez
www.eeworm.com/read/452312/7107804

m nrloop.m

%******************************* %Filename:NRloop.m %Author:Hweel_Zheng(郑奕辉) %First created:2008.08.23 %Last mended:2008.08.25 %****************************** %Newton-Raphson迭代 [delt
www.eeworm.com/read/281447/9155238

m fixedpointsolver.m

%caution required in this routine, since digamma() and trigamma() are not defined %for arguments
www.eeworm.com/read/490082/6458175

m newtraph.m

% Newton-Raphson root finding - single function % % The function and its derivative are defined in another script % file as follows: (Note that this won't accept vector inputs) % % function [fu
www.eeworm.com/read/481260/1297496

m newton copy.m

function A = newton(A,paramlist) % newton.m A Newton-Raphson procedure for computing solutions % to naemodel-derived objects. The method uses a % finite-difference approximation