Creating a pulse for thermal noise
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi
How can I start my Y-axis from -174
And not from 0?
*Example drawing
clc,clear
Hz = 10;
Amp = -164;
x = -10:0.01:10;
% a pulse function
f = @(xi,a,b) a*rectpuls(xi,b);
% plot to
plot(x,f(x,Amp,Hz),'b--');
title(['Pulse']);
xlabel('Freq');
ylabel('Amplitude');
TNX
댓글 수: 0
채택된 답변
Fangjun Jiang
2021년 9월 20일
편집: Fangjun Jiang
2021년 9월 20일
clc,clear
Hz = 10;
Amp = 10;
x = -10:0.01:10;
% a pulse function
f = @(xi,a,b) a*rectpuls(xi,b)-174;
% plot to
plot(x,f(x,Amp,Hz),'b--');
title(['Pulse']);
xlabel('Freq');
ylabel('Amplitude');
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!