代码搜索:MATLAB

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

代码结果 10,000
www.eeworm.com/read/374775/9385060

m fitness.m

%适应度函数的matlab代码 function [sol,eval]=fitness(sol,options) numv=size(sol,2)-1; % numv=size(sol,50)-1; x=sol(1:numv); eval=f(x); eval=-eval;
www.eeworm.com/read/374775/9385063

m main.m

%遗传算法的matlab代码 %维数 n=50 %设置参数边界 % bounds=ones(2,1)*[-5 5]; bounds=ones(50,1)*[-32 32]; %遗传算法优化 [p,endPop,bestSols,trace]=ga(bounds,'fitness'); %性能跟踪
www.eeworm.com/read/178762/9386009

dat bookinfo.dat

[General Information] 书名=matlab神经网络应用设计 作者= 页数=514 SS号=0 出版日期=
www.eeworm.com/read/178529/9393789

m mysort.m

function [y, in]=mysort(x) %%MATLAB function %%input: x = vector %%output: y = sorted in decreasing order x %% in = the index of the original x values; x(in)=y [a, i1] = sort(x); n=leng
www.eeworm.com/read/178406/9399702

m get_view.m

function T=get_view() % % same as T=view; but without Matlab's bug :-) !!! T=view; T(3,1:3) = -T(3,1:3);
www.eeworm.com/read/178406/9399760

m get_view.m

function T=get_view() % % same as T=view; but without Matlab's bug :-) !!! T=view; T(3,1:3) = -T(3,1:3);
www.eeworm.com/read/374514/9400489

dat bookinfo.dat

[General Information] 书名=MATLAB神经网络仿真与应用 作者= 页数=330 SS号=11101829 出版日期=
www.eeworm.com/read/374424/9405301

dat bookinfo.dat

[General Information] 书名=MATLAB实用教程 作者= 页数=344 SS号=0 出版日期= Vss号=74907181
www.eeworm.com/read/178248/9412297

asv inithmmexp.asv

framelen=240; frameinc=80; %读语音文件并分帧 %for i=1:5 %fname=sprintf('D:\\MATLAB6p5\\work\\Hmmglc\\lmsound\\%d.wav',i-1); %x=wavread(fname); %data=enframe(x,framelen,frameinc); %samples(i).data=data
www.eeworm.com/read/178248/9412330

m wavshowlpc.m

for i=1:5 fname=sprintf('D:\\MATLAB6p5\\The1stWork\\dtwglcgx\\lmsound\\%d.wav',i-1); x=wavread(fname); [x1,x2]=vad(x); x=x(x1*80:x2*80,:); l=lpc(x,16); %m=mfcc(x); %m=m(x1-2:x2-2,:);