필터 지우기
필터 지우기

how to code for a equation with summation symbol

조회 수: 2 (최근 30일)
PK
PK 2012년 9월 4일
how to code for a equation containing summation like this
sum(i=1to10)sum(j=1to2)BijXi
  댓글 수: 2
Azzi Abdelmalek
Azzi Abdelmalek 2012년 9월 4일
what are sizes of B and X
Kevin Claytor
Kevin Claytor 2012년 9월 4일
This would be a perfect case for a pair of nested for loops.

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

채택된 답변

Star Strider
Star Strider 2012년 9월 4일
편집: Star Strider 2012년 9월 4일
I am guessing that you want to multiply B (that seems to be a [10 x 2] matrix) and X (that seems to be a [10 x 1] vector). That will not work because the number of columns of B has to equal the number of rows in X.
If you define B as [2 x 10], then the [2 x 1] vector Y will be:
Y = B*X
See the documentation sections on Language Fundamentals, Arrays and Matrices, and Linear Algebra for more information.
Also, please do not use ‘i’ and ‘j’ for array indexing. MATLAB uses those for its imaginary operators. They will work as array indexes but will cause confusion if you also use complex numbers.
  댓글 수: 2
PK
PK 2012년 9월 5일
k i tried it that way and its working fine but how to subtract a complex value obtained from exponential with a constant numerical value and removing complex value from a term
Star Strider
Star Strider 2012년 9월 5일
I am not certain that I understand your question. If you mean by ‘removing a complex value from a term’ that you want to eliminate imaginary values, then the easiest way is to use the real function.
If the values of the complex part are very small (perhaps on the order of 1E-6 times the real part or less and you have good reason to believe the result should not be complex) you may be able to consider them as numerical errors in the calculation process and ignore them. If they are not, I suggest you look closely at your data and your code to be sure you are doing the calculations correctly.

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

추가 답변 (0개)

카테고리

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