hi. to sum all diagonal elements i used
sum(diag(a))
know; if i want to sum first 170 elements or last 80 elements, how can i do this.

 채택된 답변

Walter Roberson
Walter Roberson 2018년 3월 11일

0 개 추천

FirstN = @(V,N) V(1:N);
LastN = @(V,N) V(end-N+1:end);
sum(FirstN(diag(a), 170))
sum(LastN(diag(a), 80))

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Operating on Diagonal Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by