Need help with triangular wave
조회 수: 17 (최근 30일)
이전 댓글 표시
figure(1)
t=-5:0.5:5;
xcos=cos(pi*2*t);
xpsqw=xcos>0;
plot(t,xpsqw);
xlabel('Timp(s)');
ylabel('Amplitudine')
title('Graficul functiei u(t)')
ylim([-3.5 4.5]);
This is my code, but I do not know how to modify it to look like this
댓글 수: 0
답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!