Azzera filtri
Azzera filtri

Characters linear search

1 visualizzazione (ultimi 30 giorni)
javeed miyandad
javeed miyandad il 28 Mar 2011
sir i need to store characters like (man cat red blue) in 2X2 matrix and then i need to perform linear search , that is if i give man it must result man is first character please help in coding

Risposta accettata

Andrew Newell
Andrew Newell il 28 Mar 2011
You can use cell arrays and string comparisons to do this:
>> A = {'man', 'cat'; 'red', 'blue'}'
A =
'man' 'red'
'cat' 'blue'
>> i = find(strcmp('man',A));
This gives the indices so that
A{i}
returns
ans =
man
( edited to respond to comment )
  4 Commenti
Matt Fig
Matt Fig il 28 Mar 2011
if isempty(I),disp('No match found.'),end
javeed miyandad
javeed miyandad il 28 Mar 2011
thank you very much sir

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by