代码搜索:MATlab
找到约 10,000 项符合「MATlab」的源代码
代码结果 10,000
www.eeworm.com/read/298476/7959931
ppt 4matlab句柄绘图.ppt
www.eeworm.com/read/297674/8005318
txt matlab,am,fm,pm.txt
%-- 08-4-10 上午9:58 --%
Fs=1000;
Fc=200;
N=1000;
n=0:N-1;
t=n/Fs;
x=sin(2*pi*45*t);
subplot(221)
plot(t,x);
xlabel('t(s)');ylabel('x');
title('Original Signal')
axis([0 0.1 -1 1])
y1=ammod(
www.eeworm.com/read/398022/8009593
m 消除趋势项matlab程序.m
%用最小二乘法消除振动信号的趋势项
clear;
clc;
close all hidden;
fni=input('输入数据文件名:','s');
fid=fopen(fni,'r');
fs=fscanf(fid,'%f',1); %读入采样频率值
m=fscanf(fid,'%d',1); %读入拟合多项式阶数
fno=fscanf(fid,'%s',1); %读入输出
www.eeworm.com/read/397866/8017639
ppt 第5章 matlab绘图.ppt
www.eeworm.com/read/297423/8021961
doc matlab工具箱总汇.doc
www.eeworm.com/read/296696/8080793
doc ofdm_matlab_仿真程序.doc
www.eeworm.com/read/196369/8096751
doc introduce_matlab_optimal_tools.doc
www.eeworm.com/read/296512/8098068
pdf matlab图像处理实例分析.pdf
www.eeworm.com/read/296401/8107005
txt 遗传算法matlab代码.txt
遗传算法matlab代码
function youhuafun
D=code;
N=50; % Tunable
maxgen=50; % Tunable
crossrate=0.5; %Tunable
muterate=0.08; %Tunable
generation=1;
num = length(D);
fatherrand=randint(
www.eeworm.com/read/145943/12687453