How to prevent a program in matlab to ask the user enter parameters value several times

5 visualizaciones (últimos 30 días)
I have a problem about deferential evolution program. when i run the code, the program ask to input parameters data (as list ) and when i enter my data the program re ask me to enter the data again by showing the input list again. how can i make the program save my input data just one time for all iterations?

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 10 de Ag. de 2018
If you are using input() function in your code to ask for user input then you should either replace input() statements with the constant values in the beginning. If the input() statements are written inside a MATLAB function then you can consider removing them and pass the parameter as input to the function.
  4 comentarios
Ameer Hamza
Ameer Hamza el 11 de Ag. de 2018
The problem is happening because you objfun() is being called several times. It is not a good idea to ask the user for parameter values inside this function. There are following things which you can do
  • You can fix the values yourself
k1 = 1;
k2 = 2;
...
...
  • You can ask for input dialog box in Rundeopt.m file and make it as part of S_struct variable. Then use it in objfun() like this
k1 = S_struct.k1;
k2 = S_struct.k2;
...
...

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by