matlab中信号y=cos(200pi*t)sin(400pi*t),(1)分离正弦和余弦信号(2)在y中加入高斯白噪声后怎洋分离?(MATLAB中 y=co
- MATLAB中 y=cos(2*pi*100*t);s=sin(4*pi*t);是什么意思啊?
- matlab的问题:v=sin(pi*t/T)/(pi*t/T)*cos(a2*pi*t/T)/(1-4*(a2*t/T)*(a2*t/T));
- matlab作业:信号y = 5*sin(pi*20*t)+3*cos(2*pi*50*t)
- 求一个小问题,用matlab编写一个信号,y=cos[2.4cos2π400t+sin2π10t]-0.5,给个程序呀,100分求助~
MATLAB中 y=cos(2*pi*100*t);s=sin(4*pi*t);是什么意思啊?
clear all;clc;
N=1/2;
t=0.0125:0.0125:N; %给定一个N值,定义变量t,从0.0125开始,每隔0.0125取一个点,一直到N
size(t)
y=cos(2*pi*100*t); %对于定义的变量t,计算函数:cos(2*pi*100*t)
s=sin(4*pi*t); %对于定义的变量t,计算函数:s=sin(4*pi*t)
plot(t,y);hold on;grid on;
plot(t,s,'r');
matlab的问题:v=sin(pi*t/T)/(pi*t/T)*cos(a2*pi*t/T)/(1-4*(a2*t/T)*(a2*t/T));
N=600;fs=1;
n=1:N;a2=0.30;T=600/fs/14;t=n/fs;
v=sin(pi*t/T)./(pi*t/T).*cos(a2*pi*t/T)./(1-4*(a2*t/T).^2);
subplot(1,2,1),plot(t,v);title('根升余弦脉冲v(t)');grid on;
V=fft(v);
V=fftshift(V);
A=abs(V);
AA=A/N*2;
f=(-N/2+1:N/2)*fs/N;
subplot(1,2,2),plot(f,AA);title('根升余弦脉冲的频谱V(f)');grid on;
matlab作业:信号y = 5*sin(pi*20*t)+3*cos(2*pi*50*t)
clc;clear;
fs=1000;%采样频率
N=2000;%采样数据点
n=0:N-1;t=n/fs;%时间序列
y_source=5*sin(pi*20*t)+3*cos(2*pi*50*t);%信号
y_whitenoise=rand(1,N);%均匀分布白噪声
% y_whitenoise=randn(1,N);%正态分布白噪声
y_mix=y_source+y_whitenoise;%混合信号
y_fft=fft(y_mix,N)*2/N;
mag=abs(y_fft);
f=n(1,1:N/2)*fs/N;
subplot(2,2,1);plot(t,y_source);title('源信号');xlabel('时间/s');ylabel('振幅');
subplot(2,2,2);plot(t,y_whitenoise);title('白噪声');xlabel('时间/s');ylabel('振幅');
subplot(2,2,3);plot(t,y_mix);title('混合信号');xlabel('时间/s');ylabel('振幅');
subplot(2,2,4);plot(f,mag(1,1:N/2));title('傅里叶变换');xlabel('频率/Hz');ylabel('振幅');
求一个小问题,用matlab编写一个信号,y=cos[2.4cos2π400t+sin2π10t]-0.5,给个程序呀,100分求助~
fun=inline('cos(pi/2.*cos(x))-0.707*sin(x)','x')
x1 =fzero(fun,[0.5 1]),x2 =fzero(fun,[2 2.5])
x1 =
0.8893
x2 =
2.2523