代码搜索:MATlab

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

代码结果 10,000
www.eeworm.com/read/389692/8507572

c matlab2c.c

/* Copyright 1994-2005 The MathWorks, Inc. */ /* $Revision: 1.10.4.2 $ */ #ifdef MATLAB_MEX_FILE FIS *matlab2cStr(const mxArray *matlabmat, int numofpoints) { int i, j, k, param_size, data_s
www.eeworm.com/read/389692/8507583

c c2matlab.c

/* Copyright 1994-2005 The MathWorks, Inc. */ /* $Revision: 1.6.4.2 $ */ mxArray *c2matlabStr(FIS *fis, int flag){ DOUBLE *source; mxArray *fisresult; int i, j, k, param_n, mfinde
www.eeworm.com/read/289178/8570268

h linear_model_matlab.h

const char *model_to_matlab_structure(mxArray *plhs[], int num_of_feature, struct model *model_); const char *matlab_matrix_to_model(struct model *model_, const mxArray *matlab_struct);
www.eeworm.com/read/289178/8570292

c linear_model_matlab.c

#include #include #include "linear.h" #include "mex.h" #if MX_API_VER < 0x07030000 typedef int mwIndex; #endif #define Malloc(type,n) (type *)malloc((n)*sizeof(type)) #define
www.eeworm.com/read/289170/8570399

txt matlab自相关函数.txt

matlab编程的求解h(n)的自相关函数指教! %*****求解h(n)的自相关函数*****% %*****h(t)=e^(-at2)*sin(2Лft) %*****R x(n)=E(x(m)x(m-n))自相关函数定义 k=length(h); hk=fft(h,2*k); h1k=fft(h,2*k); rh=real(ifft(conj(hk).*h1k));