Double Sigma with an equation

4 ビュー (過去 30 日間)
Ufukcan Aravci
Ufukcan Aravci 2020 年 3 月 9 日
回答済み: Paola Carranza Bravo 2021 年 9 月 7 日
Hello people, I am very new to Matlab and got stuck to a question;
The coefficients in the matrix will be used in the equation. How can I use the code and get the answer for the eqn?
  1 件のコメント
Ameer Hamza
Ameer Hamza 2020 年 3 月 9 日
what is ? Is it element on i-th row and j-th column of the matrix?

サインインしてコメントする。

回答 (2 件)

Prasanna Gude
Prasanna Gude 2020 年 3 月 12 日
The equation can be solved with the help of ‘for’loop and ‘sum’ function in MATLAB. The following code will solve the equation:
for j = 1:5
for i = 1:5
X(5) = x(i,j)+x(j,i)-(x(i,i)^2);
end
sum1(5) = sum(X);
end
SUM = sum(sum1);
When you are doing both the summations from 1 to 5, the matrix ‘x’ must be of size 5x5 or above.

Paola Carranza Bravo
Paola Carranza Bravo 2021 年 9 月 7 日
for j = 1:5
for i = 1:5
X(5) = x(i,j)+x(j,i)-(x(i,i)^2);
end
sum1(5) = sum(X);
end
SUM = sum(sum1);

カテゴリ

Help Center および File ExchangeNumerical Integration and Differentiation についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by