If Condition with array of elements
74 次查看(过去 30 天)
显示 更早的评论
Can anyone help me how to write this condition
if (ra >= 1.12246*sigma)
uw=0.0;
end
Here my ra is any array of elements like and the condition should satisfy each element of an array.
So how should i write it
0 个评论
采纳的回答
Guillaume
2014-9-26
编辑:Guillaume
2014-9-26
Use all (or any if you just want some elements to statisfy the condition)
if all(ra >= 1.12246*sigma)
%...
end
Note, this assume ra is a vector and sigma is scalar. If ra is a matrix:
if all(ra(:) >= 1.12246*sigma)
%...
end
3 个评论
Guillaume
2014-9-28
You'll have to be clearer than 'it's not working'.
What are the values of ra and sigma_, and what result do you expect?
更多回答(2 个)
Stephen23
2014-9-26
编辑:Stephen23
2014-9-26
Actually you don't need to do anything. In MATLAB, the if function already is defined to be satisfied IFF every element of the conditional array is non-zero.
The documentation states this clearly "An evaluated expression is true when the result is nonempty and contains all nonzero elements (logical or real numeric). Otherwise, the expression is false."
So you example will calculate the code within the if, only if all of (ra >= 1.12246*sigma) are true.
If you only need some of them to be true, then you will need to use an any.
David Young
2014-9-28
You should try to state more clearly what is not working. Give an example set of initial values, say what you expect the result to be, and say what result you actually get. Without this, it's really hard to help you.
All the same, here's a guess. Maybe you need:
uw(ra >= 1.12246*sigma) = 0.0;
This applies the test to each element of ra and sets the corresponding element of uw to zero if the element of ra passes the test.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!