matrix element in summation sign
조회 수: 1 (최근 30일)
이전 댓글 표시
I have 2 matrix A=[a;b;c] and B=[d;e;f]
Now I want the answer of
So I type the code
syms i
symsum(A(i)*B(i),1,3)
Then there is an error "Indexing input must be numeric, logical or ':'."
But what I mean is A(1)*B(1) + A(2)*B(2) ...
So what is the correct code for this question?
댓글 수: 0
답변 (1개)
Mischa Kim
2014년 3월 10일
편집: Mischa Kim
2014년 3월 10일
Lo, use
syms a b c d e f
A = [a; b; c];
B = [d; e; f];
sum(A.*B)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!