Plot a signal in an interval of time
9 ビュー (過去 30 日間)
古いコメントを表示
how do i plot this signal in specific interval from -2 to 2
Xnsum= transXn (:) ;
0 件のコメント
回答 (1 件)
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)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!