How can I get Matlab to check for a specific string and show it's location?
    2 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Surafel Taddesse
 el 10 de Jul. de 2019
  
    
    
    
    
    Editada: Geoff Hayes
      
      
 el 11 de Jul. de 2019
            Lets say I have the following: 
A = [a1,a2,a3,a11,a22,a33]
When I say 
Index = strfind(A,'a1')
Matlab tells me that there are 2 a1 because it considers the a11 as well. Same for a2 or a3. 
How can I specify that I want a1 only. 
I appriciate the help. 
0 comentarios
Respuesta aceptada
  Geoff Hayes
      
      
 el 11 de Jul. de 2019
        >> A = {'a1','a2','a3','a11','a22','a33'};
>> result = strcmp(A,'a1')
result =
     1     0     0     0     0     0
0 comentarios
Más respuestas (0)
Ver también
Categorías
				Más información sobre Characters and Strings en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

