Hi. How I can write this formula with Matlab code?
Show older comments

2 Comments
Rik
on 21 Jan 2023
That depends on what psi is, but with a nested loop this is trivial. What did you try?
Aynur Resulzade
on 22 Jan 2023
Edited: Aynur Resulzade
on 22 Jan 2023
Answers (1)
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 Comments
Aynur Resulzade
on 23 Jan 2023
Edited: Rik
on 23 Jan 2023
Aynur Resulzade
on 23 Jan 2023
Bruno Luong
on 23 Jan 2023
Edited: Bruno Luong
on 23 Jan 2023
@Aynur Resulzade You must kidding me. I'll delete my answer
Aynur Resulzade
on 23 Jan 2023
Edited: Aynur Resulzade
on 23 Jan 2023
Categories
Find more on Clusters and Clouds in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!