Hi. How I can write this formula with Matlab code?
11 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti

2 Commenti
Rik
il 21 Gen 2023
That depends on what psi is, but with a nested loop this is trivial. What did you try?
Risposte (1)
Bruno Luong
il 21 Gen 2023
n=10;
psi=rand(1,n-2);
chi = 0;
for k=1:n-2
i = nchoosek(1:n-2,k);
j = 1:k;
l = k+1-j;
il = i(:,l);
chi = chi+sum(prod(psi(il),2));
end
chi
% Or remove some of the unecessary indexing with j and l
chi = 0;
for k=1:n-2
chi = chi+sum(prod(psi(nchoosek(1:n-2,k)),2));
end
chi
4 Commenti
Bruno Luong
il 23 Gen 2023
Modificato: Bruno Luong
il 23 Gen 2023
@Aynur Resulzade You must kidding me. I'll delete my answer
Vedere anche
Categorie
Scopri di più su Clusters and Clouds in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
