how to find variable between a range?

2 ビュー (過去 30 日間)
suchismita
suchismita 2015 年 12 月 2 日
コメント済み: suchismita 2015 年 12 月 2 日
I have a matrix as A
A=rand(1,10);
so here i have a set 10 of numbers i want to find the values which are greater than 0.4 and less than 0.8
for example,
>> rand(1,10)
ans =
Columns 1 through 9
0.8147 0.9058 0.1270 0.9134 0.6324 0.0975 0.2785 0.5469 0.9575
Column 10
0.9649
Answer i want is as [0000100111]. Hopefully i am able to clarify my question. please i need help. thank you
suchi

採用された回答

Torsten
Torsten 2015 年 12 月 2 日
B = (A>0.4) && (A<0.8);
(although I don't understand the last two ones in your answer vector).
Best wishes
Torsten.
  2 件のコメント
Thorsten
Thorsten 2015 年 12 月 2 日
should be &, not &&
suchismita
suchismita 2015 年 12 月 2 日
thank u so much

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by