代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/181845/9235108
pdf 基于matlab的ofdm系统仿真及性能分析.pdf
www.eeworm.com/read/181222/9264780
pdf matlab6.5辅助小波分析与应用.pdf
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/177523/9450061
pdf 基于matlab的bp人工神经网络设计.pdf
www.eeworm.com/read/373222/9468648
pdf matlab语言在数字语音处理上的应用.pdf
www.eeworm.com/read/372759/9494519
caj 医疗质量的topsis分析及其matlab编程实现.caj
www.eeworm.com/read/176462/9497553
doc 里面的网址有matlab源程序(很好的).doc
www.eeworm.com/read/372651/9499143
pdf matlab图形图像处理函数详细列表.pdf
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
www.eeworm.com/read/371910/9531270