Statistiques
0 Questions
                        1 Réponse
RANG
242 677
                          
                          
of 300 381
                        
RÉPUTATION
0
                           
                        
CONTRIBUTIONS
                          0 Questions
                          1 Réponse
ACCEPTATION DE VOS RÉPONSES 
                            0.00%
                        
VOTES REÇUS
0
RANG
 of 20 941
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS 
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 168 477
CONTRIBUTIONS
                            0 Problèmes
                            0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE 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 summa=halfsum(m) summa=0; for i=1:size(m,1) for j=1:size(m,2) if(i<=j) ...
plus de 6 ans il y a | 0
