How do I plot specific values from a matrix

5 ビュー (過去 30 日間)
Thomas
Thomas 2012 年 12 月 10 日
I have 6 column 5000 row matrix: A
I would like to plot Column 1 against column 5.
e.g.
plot(A(:,1),A(:,5))
However I only want to do this when values from column 4 = 3.7 and the values from column 3 = 1.2
What is the easiest way to do this?

回答 (1 件)

Matt Fig
Matt Fig 2012 年 12 月 10 日
idx = A(:,4)==3.7 & A(:,2)==1.2;
plot(A(idx,1),A(idx,5))
Beware floating point issues!

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by