summation of matrix function
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have matrix(8x8) which is content of x and y. I need summation of matrix for(x1,y1), (x2,y2), (x3,y3) and (x4,y4). please help me.
0 commentaires
Réponses (2)
Vilém Frynta
le 8 Avr 2023
this looks like homework.
i'll try to guide you, but be aware that you won't learn anything by letting others do your homework for you.
m = randi(10, [8 8]) % 8x8 matrix
if you use sum() on the whole matrix, you would get sums from all the columns. if you only want to get sum from specific columns, you can specify that by indexing.
sum(m(:,1)) % sum of all rows from column 1
if you wish to make sums of rows, you will need to rotate (transpose) the matrix.
0 commentaires
Voir également
Catégories
En savoir plus sur Matrix Indexing dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!