代码搜索:MATlab
找到约 10,000 项符合「MATlab」的源代码
代码结果 10,000
www.eeworm.com/read/200604/15428719
pdf ber simulation with matlab.pdf
www.eeworm.com/read/200573/15430346
h svm_model_matlab.h
const char *model_to_matlab_structure(mxArray *plhs[], int num_of_feature, struct svm_model *model);
const char *matlab_matrix_to_model(struct svm_model *model, const mxArray *matlab_struct);
www.eeworm.com/read/200573/15430353
c svm_model_matlab.c
#include
#include
#include "svm.h"
#include "mex.h"
#define NUM_OF_RETURN_FIELD 10
static const char *field_names[] = {
"Parameters",
"nr_class",
"totalSV",
"rho",
"Label
www.eeworm.com/read/200429/15433588
m check_matlab_bgl.m
function check_matlab_bgl(A,options)
% CHECK_MATLAB_BGL Checks the input A for various properties
%
% check_matlab_bgl(A,options) throws an input error if...
% A is not square
% if options.va
www.eeworm.com/read/200158/15439471
ppt matlab与科学计算.ppt
www.eeworm.com/read/106694/15626432
m matlab_model_by_nnx.m
%此Matlab网络文件由神经网络Office插件NNX作成
%http://www.youngfan.com/nn/
net = newff([0 11],[6 1],{'logsig' 'purelin'});
%输出输入接点范围
net.inputs{1}.range=[
0 11
];
%输出输入层到隐含层权
net.IW{1}
www.eeworm.com/read/102081/15793354
txt matlab的ga程序.txt
Matlab的GA程序 遗传算法求TSP 转载
Matlab的GA程序 遗传算法求TSP
for i=1:ngpool,
cost(i)=sum(diag(distance(gpool(i,:)',rshift(gpool(i,:))')));
end
% record current best solution
[