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