Plot a signal in an interval of time
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
how do i plot this signal in specific interval from -2 to 2
Xnsum= transXn (:) ;
0 comentarios
Respuestas (1)
KALYAN ACHARJYA
el 29 de Mayo de 2020
Editada: KALYAN ACHARJYA
el 29 de Mayo de 2020
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 comentarios
Ver también
Categorías
Más información sobre Annotations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!