Info

此问题已关闭。 请重新打开它进行编辑或回答。

How to make an array which plots certain points if another column has a certain value?

1 次查看(过去 30 天)
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!

回答(1 个)

dpb
dpb 2019-5-27
"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)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by