代码搜索:MATLAB LMD
找到约 10,000 项符合「MATLAB LMD」的源代码
代码结果 10,000
www.eeworm.com/read/164566/10103098
chm 学用matlab.chm
www.eeworm.com/read/164399/10111075
txt tsp matlab genetic.txt
function TSPga(tspdist,termops,popsize,pm,alpha)
%全国计算机仿真大奖赛第三题程序(旅行商TSP问题)
%tspdist:距离矩阵
%termops:种群代数 ,推荐40-300
%popsize:每代染色体的个数, 推荐60-450
%pm:变异概率, 推荐0.1-0.3 pm越大,参与均匀变异的染色体越多, 比如pm=0.2,则参与变
www.eeworm.com/read/359658/10131472
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/359658/10131491
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/359247/10159263
m matlab_lms_demo.m
clear all
close all
hold off
sysorder = 5 ; % channel system order
N=2000; % number of system points
inp = randn(N,1); % input a random signal
n = randn(N,1);
[
www.eeworm.com/read/359005/10171854
c matlab2c.c
/* Copyright 1994-2002 The MathWorks, Inc. */
/* $Revision: 1.10 $ */
#ifdef MATLAB_MEX_FILE
FIS *matlab2cStr(const mxArray *matlabmat, int numofpoints)
{
int i, j, k, param_size, data_size
www.eeworm.com/read/359005/10171861
c c2matlab.c
/* Copyright 1994-2002 The MathWorks, Inc. */
/* $Revision: 1.6 $ */
mxArray *c2matlabStr(FIS *fis, int flag){
DOUBLE *source;
mxArray *fisresult;
int i, j, k, param_n, mfindex;
www.eeworm.com/read/356890/10219599
rc2 matlab_eng.rc2
//
// MATLAB_ENG.RC2 - resources Microsoft Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
www.eeworm.com/read/356588/10224243
h svm_model_matlab.h
const char *model_to_matlab_structure(mxArray *plhs[], int num_of_feature, struct svm_model *model);
struct svm_model *matlab_matrix_to_model(const mxArray *matlab_struct, const char **error_message);
www.eeworm.com/read/356588/10224249
c svm_model_matlab.c
#include
#include
#include "svm.h"
#include "mex.h"
#if MX_API_VER < 0x07030000
typedef int mwIndex;
#endif
#define NUM_OF_RETURN_FIELD 10
#define Malloc(type,n) (type *)mal