Info
この質問は閉じられています。 編集または回答するには再度開いてください。
how to calculate this
1 回表示 (過去 30 日間)
古いコメントを表示
I need a help in this to find in matlab ∑_i∑_j[y_(i ) y_j √(a_i a_j e_i e_j )]
where only yi, yj are same component which are C1,C2,C3,C4 , and each components has a value of aj,aj,ei,ej , this sign ∑ came twice in here and I dont know how to expand this equation ..
0 件のコメント
回答 (1 件)
Image Analyst
2012 年 2 月 20 日
Wouldn't it just be
sumOfArray = 0;
for ii = 1 : lastI
for jj = 1 : lastJ
sumOfArray = sumOfArray + y(ii)*y(jj)*sqrt(a(ii)*a(jj)*e(ii)*e(jj));
end
end
1 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!