Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

if (strcmp(O1,'00000') || strcmp(O1,'10000') || strcmp(O1,'11000')) I used this but still my code is not working?

1 visualización (últimos 30 días)
Ashok
Ashok el 3 de Mzo. de 2014
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
sir,I used this command which i got from you...if (strcmp(O1,'00000') strcmp(O1,'10000') strcmp(O1,'11000'))...but still my code is not working. I am attaching my code with it. Please check it and tell me the solution.
  1 comentario
Image Analyst
Image Analyst el 3 de Mzo. de 2014
You did not attach the code. Remember to click both "Choose file" and "Attach file" buttons.

Respuestas (1)

Iain
Iain el 3 de Mzo. de 2014
if (strcmp(O1,'00000') || strcmp(O1,'10000') || strcmp(O1,'11000')) ...
Thats easier if you do: if any(strcmp(O1, { '00000','10000','11000' } )
If, and only if, O1 = '00000', without any other characters at all (no commas, no non-printing characters, and no approximations e.g. o instead of O or 0, will the if statement work properly.

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!

Translated by