How could I make these functions as a loop?

1 visualización (últimos 30 días)
mahmoud mosa
mahmoud mosa el 27 de Abr. de 2016
Comentada: MHN el 28 de Abr. de 2016
Hi all, How could I make these functions as a loop? these is the functions output1=net1(Test_Inputs); output2=net2(Test_Inputs); output3=net3(Test_Inputs); output4=net4(Test_Inputs); output5=net5(Test_Inputs);

Respuesta aceptada

MHN
MHN el 27 de Abr. de 2016
It is not a good idea to use this kind of coding, but the following code will do what you want.
for i = 1:5
a = sprintf('output%d=net%d(Test_Inputs);', i,i);
eval(a)
end
  2 comentarios
mahmoud mosa
mahmoud mosa el 28 de Abr. de 2016
Editada: mahmoud mosa el 28 de Abr. de 2016
thanks a lot, it is perfectly work. but, could i put 'i =1: n' and make it as a function of (n) according to the number of nets i have
MHN
MHN el 28 de Abr. de 2016
No problem. Sure, you can do it.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by