Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
How can I have a function that has a string as the input.
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am trying to make a function that requires you to input the name of a color to get the output. My code, for example, is:
function [] = displayColor(color)
if color == 'black'
disp('black line');
plot(x.^2);
elseif color == 'blue'
disp('blue line');
plot(x.^3);
end
When I do this, I get the error:
Error using ==
Matrix dimensions must agree.
Error in displayColor (line 4)
if color == 'black'
How do I fix this so I can input a string as the function variable??
1 commentaire
Stephen23
le 1 Avr 2018
Do NOT use == to check if character vectors are the same. Use strcmp or strcmpi.
Réponses (1)
David Fletcher
le 31 Mar 2018
Modifié(e) : David Fletcher
le 31 Mar 2018
You need to use strcmp(string1,string2) to compare as the size of the color variable might be a different length to whatever fixed length string you are trying to equate it with (which is why you are getting the error).
3 commentaires
Walter Roberson
le 1 Avr 2018
if strcmp(color, 'black')
The input to the function would be like displayColor('black')
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!