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일

1 개 추천

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개)

카테고리

도움말 센터File Exchange에서 Matrix Indexing에 대해 자세히 알아보기

질문:

2020년 11월 30일

댓글:

2020년 12월 3일

Community Treasure Hunt

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

Start Hunting!

Translated by