代码搜索:Newton-Raphson

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

代码结果 98
www.eeworm.com/read/371256/9558922

m funmatnr.m

%funmatnr Matriu Fonemantal amb el metode dels 8 o m閟 punts utilitzant el metode iteratiu de Newton-Raphson % [F] = funmatnr(M,Fini,n,error) % % M matriu de 4-per-n amb les coordendes de
www.eeworm.com/read/301544/6962361

m fzeron.m

function x = fzeron(fun, x0, varargin) % FZERON Scalar nonlinear zero finding using Newton-Raphson method % % X = FZERON(FUN,X0) tries to find a zero of FUN near X0. FUN (usually % an M-file)
www.eeworm.com/read/467252/7008264

m fzeron.m

function x = fzeron(fun, x0, varargin) % FZERON Scalar nonlinear zero finding using Newton-Raphson method % % X = FZERON(FUN,X0) tries to find a zero of FUN near X0. FUN (usually % an M-file)
www.eeworm.com/read/476392/6759395

m lfnewton.m

% Power flow solution by Newton-Raphson method % Copyright (c) 1998 by H. Saadat ns=0; ng=0; Vm=0; delta=0; yload=0; deltad=0; nbus = length(busdata(:,1)); for k=1:nbus n=busdata(k,1); kb(n
www.eeworm.com/read/257010/11960586

m lfnewton.m

% Power flow solution by Newton-Raphson method % Copyright (c) 1998 by H. Saadat ns=0; ng=0; Vm=0; delta=0; yload=0; deltad=0; nbus = length(busdata(:,1)); for k=1:nbus n=busdata(k,1); kb(n
www.eeworm.com/read/471460/6894028

m lfnewton.m

% Power flow solution by Newton-Raphson method % Copyright (c) 1998 by H. Saadat ns=0; ng=0; Vm=0; delta=0; yload=0; deltad=0; nbus = length(busdata(:,1)); for k=1:nbus n=busdata(k,1); kb(n
www.eeworm.com/read/480920/6653682

cpp practica4_2.cpp

/*PRACTICA 4 EJERCICIO 2 //METODO DE NEWTON CON MINI ACOTACION// Escribir un programa que aproxime el valor de la ra韟 cuadrada de 2 por medio del m閠odo de Newton-Raphson aplicado a la funci髇 f(
www.eeworm.com/read/334289/12613723

m newtonraphson.m

%文件名:NewtonRaphson.m function root = NewtonRaphson(func,x,tol,Nmax) % 功能:Newton-Raphson方法求解非线性方程组 % 输入: % func ---- 方程函数句柄 % x ---- 初始迭代点 % tol(可选)-精度要求(默认是1e-4) % Nmax(可选)-最大迭代次数(默认100次)