Double sum - vector (matrix) solution

조회 수: 3 (최근 30일)
Mikl Nik
Mikl Nik 2020년 11월 30일
댓글: Mikl Nik 2020년 12월 3일
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!

채택된 답변

James Tursa
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 CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by