plot Discrate time signal
이전 댓글 표시
Please give me a sample completion code discrate time signal
댓글 수: 1
Star Strider
2021년 1월 12일
Reprise of: How to Plot a Continues Tiime Signal
답변 (1개)
x = sort(rand(1,10));
y = rand(1,10);
stem(x, y)
댓글 수: 2
Muhammad Fauzan
2021년 1월 12일
u = @(t) (t>=0);
x = sort(rand(1,10)*5-2);
y = rand(1,10);
stem(x, y)
hold on
y2 = y .* u(1-x);
stem(x, y2, 'r')
hold off
카테고리
도움말 센터 및 File Exchange에서 Descriptive Statistics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

