Plot a signal in an interval of time

5 次查看(过去 30 天)
how do i plot this signal in specific interval from -2 to 2
Xnsum= transXn (:) ;

回答(1 个)

KALYAN ACHARJYA
KALYAN ACHARJYA 2020-5-29
编辑:KALYAN ACHARJYA 2020-5-29
If you already have the sata ranges transXn, then you can extract only those data points having >-2 and <2
Xnsum=transXn(transXn>=-2 & transXn<=2);
plot(Xnsum);
If NOT, defined signal in the range and plot
signal=-2:01:2;
plot(signal)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by