代码搜索:MatLab

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

代码结果 10,000
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/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(