How do I take the following equation and put it into Matlab form?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
sree chak
le 3 Sep 2020
Réponse apportée : Walter Roberson
le 3 Sep 2020
I am trying to evaluate an objective function and trying to figure out how to translate this into Matlab form.
I know I have to do a loop somewhere but just can't figure out how to start. Any guidance would be really really appreciated.
Essentially k = 1: 5 and j = 1:J and n = 1:N
3 commentaires
Réponse acceptée
Walter Roberson
le 3 Sep 2020
abs(Gkj - sum(f(c(1:N)) .* gkj(X(1:N))))
provided that f and gkj are vectorized functions.
If they are not, then
fv = @(C) arrayfun(@f, C);
gkjv = @(C) arrayfun(@gkj,C);
abs(Gkj - sum(fv(c(1:N)) .* gkjv(X(1:N))))
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!