필터 지우기
필터 지우기

compute triple summation for my homework

조회 수: 1 (최근 30일)
androidguy
androidguy 2016년 9월 19일
댓글: Walter Roberson 2016년 9월 21일
hello guys
I have need to compute the following summation for my homework. Any hint or pseudo code would be helpful. Thanks.
Edit - "p" is a vector containing numbers and p(x) refers to the element position in that vector and "y" is a symbol

채택된 답변

Walter Roberson
Walter Roberson 2016년 9월 19일
Since y is a symbol, you will need to use the Symbolic Toolbox.
You might be tempted to use symsum() for this, but symsum has the limitation that symbolic variables cannot be used for indexing of arrays.
So... ndgrid, calculate the formula for each point, and then sum() along the dimensions until you get a scalar result.
  댓글 수: 5
androidguy
androidguy 2016년 9월 20일
My teacher said that it is okay to start the second summation from 1 instead of 0. Also how do i assign variables for each varying index? For example when x=1 and t=1, i need a variable like y11 and when x=2 and t=2 y22 and so on. How can i do this?
Walter Roberson
Walter Roberson 2016년 9월 21일
y = sym('y', [3, 2]);
y(t, x)

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

androidguy
androidguy 2016년 9월 19일
can anyone help me on this one please? i would really appreciate it

카테고리

Help CenterFile Exchange에서 Mathematics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by