Why does my function abc give error with optimtool
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sadiq Akbar
el 12 de Jul. de 2022
Editada: Sadiq Akbar
el 14 de Jul. de 2022
I have a function file abc. I want to run it with optimtool ga. I do settings in the Optimtool as below:
Solver: ga-Genetic Algorithm
Fitness function: @abc
Number of variable 6
Bounds Lower: [0 0 0 0 0 0] Upper:[180 180 180 180 180 180]
-----------------------------
After running it, it gives the following error:
Optimization running.
Error running optimization.
Incorrect dimensions for matrix multiplication. Check that the number of columns in the first matrix matches the number of rows in the second matrix. To perform elementwise multiplication, use '.*'.
0 comentarios
Respuesta aceptada
Torsten
el 12 de Jul. de 2022
The product r*k in the line
A = exp(-1j*r*k);% Steering matrix
is not defined.
k is (3x3), r is (Nx3) where N = 10.
Setting N = 3 would make the product to be defined.
6 comentarios
Torsten
el 14 de Jul. de 2022
I have no experience with ga.
If your problem is such that you can use "fmincon" or some other deterministic optimizer instead of ga, you should do so.
Más respuestas (0)
Ver también
Categorías
Más información sobre Problem-Based Optimization Setup 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!