How to plot difference of two functions in matlab?
조회 수: 12 (최근 30일)
이전 댓글 표시
1. Given u[n] the unit step sequence, using the stem function plot the following :-
• u[n - 3] - u[n - 8]
• u[8 - n] - u[4 - n]
• u[6 - n]
댓글 수: 0
채택된 답변
Walter Roberson
2021년 4월 25일
f1 = @(x) sin(3*x)
f2 = @(x) sin(8*x)
f3 = @(x) f1(x) - f2(x)
fplot(f3, [-10 10])
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!