Optimization of a matrix variable
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Soumili Sen
am 24 Mär. 2022
Kommentiert: Soumili Sen
am 24 Mär. 2022
Hello all,
I am writting a code for optimization where I have a optimizing variable as a matrix of N*L.How I can declare this matrix variables within a function as an objective function?
I am trying like that,
N=2;
L=10;
z = rand(N,L);
r= mainfcn(z,N)
function r= mainfcn(z,N)
a=z(N:L);
r = a.^2- 1;
end
here I am getting 'a'= as a vector not a matrix. How I can make 'a' as a matrix of N*L?
Thanks in advance.
0 Kommentare
Akzeptierte Antwort
Jan
am 24 Mär. 2022
By:
a = z; % instead of z(N:L)
? This looks trivial, so do I oversee a detail?
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Direct Search finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!