文件名称:函数 y=newton_modif(g,x0 ,o):NEWTON_MODIF 的 Matlab 代码试图找到方程 g(x)=0 的根-matlab开发
文件大小:2KB
文件格式:ZIP
更新时间:2024-06-18 03:05:26
matlab
NEWTON_MODIF试图找到方程式的根g(x)= 0 通过改进的 Newton-Raphson 方法输入: g 必须是@-syntax 函数或符号表达式或字符x0 猜测值g 必须为数组输入做好准备示例 g='sin(x)';,x0=2;y=newton_modif(g,x0,0) 或g=@(x)sin(x)+x.*cos(x); x0=1; y = newton_modif(g,x0,1)或符号 x; g=sin(x); y=newton_modif(g,x0,1)
【文件预览】:
newton_modif.m.zip