Borrar filtros
Borrar filtros

Info

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

in matlab nested if statement not working properly?

1 visualización (últimos 30 días)
Dhines
Dhines el 28 de Oct. de 2015
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
if code==0411106200445
open('product1.txt');
elseif code==506002830376
open('product2.txt');
elseif code==9781234567897
open('product3.txt');
elseif code==987654321098
open('product4.txt');
else
open('product5.txt');
end
when my result coming to this loop it opened always last txt file(product5.txt).. not working for other results... why?

Respuestas (1)

Image Analyst
Image Analyst el 28 de Oct. de 2015
It is working properly. None of your code values ever equal any of those integers. Your code is an integer isn't it? It's not a double or string is it? What does it say the value of code is when you step through it in the debugger? You are using the debugger aren't you?

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by