Plotting Square wave from pressure signal
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I have pressure signal collected from the sensors placed under foot. Findpeaks function was used to detect points (c and d). Point ( and b) are the zero crossing. I want to plot sqaure wave from this signal for the following interval:
If pressure signal is greater than point (a) and equal to or less than point d
new_signal = 1;
else if pressure signal is greater than point (b) and equal to or less than point f
new_signal = 0;
How i can plot this in matlab?
0 comentarios
Respuestas (1)
Antonio Ciociola
el 17 de Ag. de 2020
Editada: Antonio Ciociola
el 17 de Ag. de 2020
This can be done transforming your signal into an arry of logic values:
sig_bool = (signal>a & signal<=d);
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!