필터 지우기
필터 지우기

Sawtooth that has 2 different times

조회 수: 2 (최근 30일)
Peter Cristian
Peter Cristian 2022년 4월 11일
답변: Mathieu NOE 2022년 4월 11일
I have to make a sawtooth signal that has 2 times.
It starts at 0V, increases to 0.4V for 5ms, then decreases back to 0V in 0.5ms
the first part i know its, but i dont know how to write the last part
y=sawtooth(2*pi*200*t);

답변 (1개)

Mathieu NOE
Mathieu NOE 2022년 4월 11일
hello
here is the correct answer :
T = 25e-3; % signal duration = 25 ms
amplitude = 0.4;
fs = 10000; % ts = 0.1 ms
t = 0:1/fs:T-1/fs;
f_signal = 1/(5e-3 + 0.5e-3); % signal period = 5 ms + 0.5 ms
width = 5e-3/(5e-3 + 0.5e-3); % ratio of time for upward and downward portion of signal
x = amplitude*(0.5*(1+sawtooth(2*pi*f_signal*t,width)));
plot(t*1000,x)
xlabel('time (ms)');
grid on

카테고리

Help CenterFile Exchange에서 Spectral Measurements에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by