フィルターのクリア

Numbers between a Matrix

1 回表示 (過去 30 日間)
Nicolas Sajche
Nicolas Sajche 2021 年 9 月 3 日
コメント済み: John D'Errico 2021 年 9 月 3 日
Lets suppose I have a time vs Volts Matrix(10*2).
a=rand(10,2)*2
a =
0.8775 0.5521
0.7631 1.3594
1.5310 1.3102
1.5904 0.3252
0.3737 0.2380
0.9795 0.9967
0.8912 1.9195
1.2926 0.6808
1.4187 1.1705
1.5094 0.4476
How do I found the numbers of that Matrix that are in between [0(left colum) and 1.5(rigth colum)].
  1 件のコメント
John D'Errico
John D'Errico 2021 年 9 月 3 日
Please don't ask this again. You have now gotten answers on both of your questions, so I will not close it as a duplicate. But I will do so if you ask the same question again.

サインインしてコメントする。

回答 (1 件)

Malik Cheriaf
Malik Cheriaf 2021 年 9 月 3 日
% numbers between "left column">=0 and "rigth column"<=1.5.
i=(a(:,1)>=0 & a(:,2)=<1.5)
a=a(i,:);

カテゴリ

Help Center および File ExchangeOperating on Diagonal Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by