How to make an array which plots certain points if another column has a certain value?
Información
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Mostrar comentarios más antiguos
Hey,
I have two arrays in which the velocity and the corresponding position of a point are noted. If the velocity is zero, the position of that point has to be plotted. If the velocity is not zero, the position of that point should not be plotted.
Does anybody know how to do this?
Thanks!
Respuestas (1)
dpb
el 27 de Mayo de 2019
"Logical addressing"...
isv=(v~=0); % the logical addressing vector for v
plot(p(isv)) % plot the points (vs ordinal number)
plot(v(isv),p(isv)) % plot the points (vs velocity at point)
La pregunta está cerrada.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!