how to check if numbers in the vector is within range of 1:10
182 ビュー (過去 30 日間)
古いコメントを表示
while length(x) == 6
if x < -36 && x > 47
If there was an input and I had to check if the values of the array is within the elements of 1:10, how can i do it?
I though just checking if the input of array was bigger or small than the limited number it works but it didn't.
I'm assuming you have to check either all at once or one by one.
could someone help me?
Thank you in advance =]
0 件のコメント
回答 (2 件)
Thorsten
2015 年 4 月 16 日
all(x >= 1 & x <= 10)
2 件のコメント
James Tursa
2015 年 4 月 16 日
Thorsten used a single &, and you used a double &&. The single & is element-wise operator and the double && is intended for scalar operands only. Use a single &.
Jan
2015 年 4 月 16 日
編集済み: Jan
2015 年 4 月 16 日
If the inputs are large, the creation of the temporary arrays consumes a lot of time. Then this MEX function is more efficient: FEX: anyExceed :
if anyExceed(x, 1, 10)
This avoids creating the temporary arrays t1 = x >=1 , t2 = x<=10 and t1&t2 and the code stops at the first matching element.
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!