代码搜索:MATLAB

找到约 10,000 项符合「MATLAB」的源代码

代码结果 10,000
www.eeworm.com/read/377676/9266861

txt newton法求解非线性方程_matlab版.txt

Newton法求解非线性方程_matlab版 %该算法是用来求解非线性方程的 %fx是由syms定义的一元函数 function Newton(fx,x0,E,N) %digits(10) x=0 for n=1:N x=x0-subs(fx,x0)/subs(diff(fx),x0); fprintf('%f\n',x); if abs(det(x-x0
www.eeworm.com/read/176409/9499862

txt 基于matlab的函数优化遗传算法程序 .txt

function [BestPop,Trace]=fmaxga(FUN,LB,UB,eranum,popsize,pcross,pmutation,options) % [BestPop,Trace]=fmaxga(FUN,LB,UB,eranum,popsize,pcross,pmutation) % Finds a maximum of a function of several var