Problem with find string in array

1 vue (au cours des 30 derniers jours)
Kostiantyn Voskoboinik
Kostiantyn Voskoboinik le 20 Mar 2020
Hello, i try to find mark 'bmw' in Mfg table(carbig.mat).I want to create new logic table with 1 (if string exist) or 0 to others string.
>> idx = ismember((Mfg(:,1:6)=='bmw'),[1,1,1,1,1,1],'rows')
But i have this mistake:
Error using ==
Matrix dimensions must agree.
It's my workspace:
  4 commentaires
the cyclist
the cyclist le 20 Mar 2020
@madhan, if you type
load carbig.mat
you'll have the data. It is a file used for examples in the documentation.
madhan ravi
madhan ravi le 20 Mar 2020
Thank you the cyclist.

Connectez-vous pour commenter.

Réponse acceptée

madhan ravi
madhan ravi le 20 Mar 2020
Wanted = ismember(cellstr(Mfg),'bmw')

Plus de réponses (1)

the cyclist
the cyclist le 20 Mar 2020
contains(cellstr(Mfg),'bmw')
  5 commentaires
the cyclist
the cyclist le 20 Mar 2020
This is more awkward, but will work
not(cellfun(@isempty,strfind(cellstr(Mfg),'bmw')))
I expect there is something more elegant.
Kostiantyn Voskoboinik
Kostiantyn Voskoboinik le 21 Mar 2020
It's work , thanks

Connectez-vous pour commenter.

Catégories

En savoir plus sur Data Type Conversion dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by