calculations or sum all diagonal elements
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
mohammed abdul wadood
il 11 Mar 2018
Commentato: mohammed abdul wadood
il 11 Mar 2018
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.
0 Commenti
Risposta accettata
Walter Roberson
il 11 Mar 2018
FirstN = @(V,N) V(1:N);
LastN = @(V,N) V(end-N+1:end);
sum(FirstN(diag(a), 170))
sum(LastN(diag(a), 80))
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Operating on Diagonal Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!