代码搜索:MATLAB LMD
找到约 10,000 项符合「MATLAB LMD」的源代码
代码结果 10,000
www.eeworm.com/read/187774/8601660
txt matlab_cdma.txt
CDMA业务信道接收机仿真实现
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% 该函数仿真CDMA接收机的功能,包括解扩,解
www.eeworm.com/read/288027/8654888
chm matlab-help.chm
www.eeworm.com/read/287937/8659595
pdf matlab_6.0.pdf
www.eeworm.com/read/431335/8687649
chm matlab-help.chm
www.eeworm.com/read/431224/8696609
bmp threed_matlab.bmp
www.eeworm.com/read/431224/8696633
bmp plot_matlab.bmp
www.eeworm.com/read/287276/8698778
cpp matlab_driver.cpp
#include "matlab_interface.h"
#include
void main(void)
{
double hf;
double x[10], y[10];
int i;
for(i = 0; i < 10; i++)
{
x[i] = (double)i;
y[i] = (double)i;
}
www.eeworm.com/read/287276/8698848
h matlab_interface.h
#ifndef _matlab_interface_h_
#define _matlab_interface_h_
#include "engine.h"
#include "matrix.h"
#include "mex.h"
#include
#include
#include
class matlab_in
www.eeworm.com/read/287276/8698906
c matlab_driver.c
#include "matlab_interface.h"
void main(void)
{
matlab_interface mi;
mi.spawn_matlab();
mi.close_matlab();
};
www.eeworm.com/read/287148/8718567
m iir_matlab.m
clear all; %清寄存器值
clf; % 清屏
N=256; %数据点数
fs=600; % 采样频率
dt=1/fs;