代码搜索:MATLAB LMD
找到约 10,000 项符合「MATLAB LMD」的源代码
代码结果 10,000
www.eeworm.com/read/301669/13852928
pdf billiard matlab program.pdf
www.eeworm.com/read/140283/5793095
cpp matlab2annie.cpp
/*
* matlab2annie - Convert a feed-forward neural network in Matlab's
* Neural Network toolbox to an annie network so that you can use
* the network in C++ applications.
*
* http://annie.sou
www.eeworm.com/read/140283/5793096
cpp trset2matlab.cpp
/*
* trset2matlab - Convert a traning set file (binary) into two
* text files that can be imported into Matlab as two matrices.
* One contains the input vectors and the other the corresponding
www.eeworm.com/read/456224/6278834
m ex72_matlab.m
% Ex. 7.2
% using MATLAB fmincom unction
%
x0 = [0.55 0.5];
lb = [0.02 0.02];
ub = [1.0 1.0];
%x = fmincon('Ofun_741',x0,[],[],[],[],lb,ub,'Con_741_matlab')
x = constr('Con_741_matlab',x0)
www.eeworm.com/read/456224/6278840
m con_741_matlab.m
function [fun, ineqty] = Con_741_matlab(x)
% Inequality constraint vector
fun = x(1)*x(1) - x(2)*x(2);
ineqty= [(2.5509*x(1)*x(1) +0.1361*x(1) -33.148*(x(1)^4 - x(2)^4)), ...
(0.0488 +1.46
www.eeworm.com/read/261123/6328475
doc fft的matlab程序.doc
www.eeworm.com/read/426742/6330835
txt id3matlab.txt
function D = ID3(train_features, train_targets, params, region)
% Classify using Quinlan′s ID3 algorithm
% Inputs:
% features - Train features
% targets - Train targets
% params - [Number o
www.eeworm.com/read/493774/6390264