How to make an array which plots certain points if another column has a certain value?
Infos
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Afficher commentaires plus anciens
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!
Réponses (1)
dpb
le 27 Mai 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)
Cette question est clôturée.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!