フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Computation of summation equation

1 回表示 (過去 30 日間)
User123
User123 2017 年 8 月 3 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Hi can anybody help me compute this equation in matlab?
  1 件のコメント
Walter Roberson
Walter Roberson 2017 年 8 月 3 日
Sorry, No. The summation notation with multiple variables is ambiguous.

回答 (1 件)

Julie Kraus
Julie Kraus 2017 年 8 月 3 日
I mean, for the top portion, you could do something like
mlk=combvec(1:N,1:N,1:N);
k=mlk(3,:);
...
sum(C(k,k).*C(m,l)-C(l,k).*C(k,m))/sum(...
The bottom portion is more complex, nested for loops for each sum are the only thing I see working.
for k=1:N
fg=combvec(1:N,1:N)
fg(:,fg(1,:)==k)=[];
l=1:N;
...
end

この質問は閉じられています。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by