Why am I getting an error while using intlinprog
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Bhavz
el 14 de Oct. de 2014
Comentada: Sean de Wolski
el 15 de Oct. de 2014
Please see my file attached after running it I get the following error
Error using intlinprog (line 121) INTLINPROG requires the following inputs to be of data type double: 'f'.
Error in main (line 111) [x,fval,exitflag] = intlinprog(@objectiveFun,...
Please do let me know whats wrong with my code and what can i do so that it works and i get a finite number of iterations and plot them as well.
0 comentarios
Respuesta aceptada
Sean de Wolski
el 14 de Oct. de 2014
IntCon is a function handle. It cannot be. It has to be a vector showing which elements are integer constrained. For example:
[1 2 4]
or
1:n
2 comentarios
Sean de Wolski
el 15 de Oct. de 2014
It's not where do you place it, it's what type is it. You need to extract from your constraint function, (or somewhere else), which elements are integer constrained.
Más respuestas (0)
Ver también
Categorías
Más información sobre Nonlinear Control en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!