Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

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 vue (au cours des 30 derniers jours)
Sachin Patil
Sachin Patil le 30 Août 2016
Clôturé : MATLAB Answer Bot le 20 Août 2021
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 commentaires
Thorsten
Thorsten le 30 Août 2016
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?
Sachin Patil
Sachin Patil le 31 Août 2016
I want to check for each individual cell. If cell is empty it should be in else condition.

Réponses (1)

Star Strider
Star Strider le 30 Août 2016
Modifié(e) : Star Strider le 30 Août 2016
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 commentaires
Sachin Patil
Sachin Patil le 31 Août 2016
@Star Strider: Oh I am sorry, actually it is less than 70. done by mistake.
Star Strider
Star Strider le 31 Août 2016
Then my function becomes:
LF = @(x) cellfun(@(x) ((0<x) & (x<70)) & ~isempty(x), x, 'Uni',0); % Element-By-Element Comparison Function

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by