Statistik
0 Fragen
                        1 Antwort
RANG
12.608
                          
                          
of 300.392
                        
REPUTATION
4
                           
                        
BEITRÄGE
                          0 Fragen
                          1 Antwort
ANTWORTZUSTIMMUNG 
                            0.00%
                        
ERHALTENE STIMMEN
2
RANG
 of 20.933
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS 
0
ALL TIME DOWNLOADS
0
RANG
of 168.335
BEITRÄGE
                            0 Probleme
                            0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Write a function called halfsum that takes as input an at most two-dimensional array A and computes the sum of the elements of A that are in the lower right triangular part of A
function u = halfsum(P) u1 = P(end:-1:1, 1:end); u2 = triu(u1); u = sum(u2(:)); end
mehr als 8 Jahre vor | 2
 
        