Double sum - vector (matrix) solution
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi!
I want to calculate the expression
, where C and F - matrix (n x m). How can I do it without loops?
Thank you for your answers!
댓글 수: 0
채택된 답변
James Tursa
2020년 11월 30일
편집: James Tursa
2020년 11월 30일
result = sum(C(:).*F(:));
or for later versions of MATLAB
result = sum(C.*F,'all');
This all assumes that the actual indexing starts at 1, not 0 as your formula above is written, since MATLAB uses 1-based indexing.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!