Info
この質問は閉じられています。 編集または回答するには再度開いてください。
I have data as shown, and I am using if statement but it is giving error as, Undefined function 'lt' for input arguments of type 'cell', please help?
1 回表示 (過去 30 日間)
古いコメントを表示
ca =
[ 1.3589]
[ 7.9773]
[28.2728]
[28.2728]
[ 0]
[ 0]
[ 0]
[ 0]
[ 0]
[ 0]
[ 0.8705]
[ 7.4681]
[28.2728]
[37.0303]
[ 0]
[ 0]
[ 0]
[ 0]
[ 0]
[ 0]
if (0<ca)&&(ca>70)
do this
else
do this
end
2 件のコメント
Thorsten
2016 年 8 月 30 日
Do you want to do "this" it the condition is true for all elements, or do you want to check each individual cell? And what should happen if the cell is empty?
回答 (1 件)
Star Strider
2016 年 8 月 30 日
編集済み: Star Strider
2016 年 8 月 30 日
You can do the comparison with cellfun. I am not certain what your code is doing, so this function can do element-by-element comparisons in a loop, or you can create a logical vector from the entire ‘ca’ cell array:
LF = @(x) cellfun(@(x) ((0<x) & (x>70)) & ~isempty(x), x, 'Uni',0); % Element-By-Element Comparison Function
Lv = LF(ca); % Entire Vector Comparison
Note that none of the elements in ‘ca’ will test true for your conditions.
4 件のコメント
Star Strider
2016 年 8 月 31 日
Then my function becomes:
LF = @(x) cellfun(@(x) ((0<x) & (x<70)) & ~isempty(x), x, 'Uni',0); % Element-By-Element Comparison Function
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!