代码搜索:S-V MATLAB
找到约 10,000 项符合「S-V MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/298885/7927649
doc matlab命令大全.doc
www.eeworm.com/read/298885/7927670
pdf matlab命令大全.pdf
www.eeworm.com/read/398520/7941564
doc matlab设计题目.doc
www.eeworm.com/read/298349/7965527
txt matlab1.txt
% Program 5-6
%
% Simulation program to realize DS-CDMA system
%
% dscdma.m
%
% Programmed by yixiongshu,2006.8.9
clear all;
clc;
%----------------------preparation part -------------------
www.eeworm.com/read/197622/7984237
pdf matlab20.pdf
www.eeworm.com/read/398345/7992965
asv trajectory_matlab.asv
clc
clear all
close all
randn('seed',1245);
dt = 1 ;
step=100
e(1)=5000;
n(1)=0;
ve(1)=0;
vn(1)=100;
h_box=[];
for i = 1:100
h=8000;
h_box=[h_box,h];
end
for t=1:step
if t
www.eeworm.com/read/398345/7992969
m trajectory_matlab.m
clc
clear all
close all
randn('seed',1245);
dt = 1 ;
step=100
e(1)=5000;
n(1)=0;
ve(1)=0;
vn(1)=100;
h_box=[];
for i = 1:100
h=8000;
h_box=[h_box,h];
end
for t=1:step
if t
www.eeworm.com/read/398125/8004456
doc matlab_clock.doc
www.eeworm.com/read/297670/8005339
txt matlab-fsk.txt
4月13日
用<mark>MATLAB</mark>产生FSK调制信号
1.实验要求:
(1)随机产生一个包含十个元素的数组,该数组中的元素非0即1,用作FSK信号的输入数据。
(2)对该数组中的二进制数进行FSK调制,0调制在5000Hz上,1调制在8000Hz上,码元速率为200码元/秒。
(3)画出所产生的FSK信号的时域图形和频域图形。
2.实验源程序
%随机产生一个包含 ...