Effacer les filtres
Effacer les filtres

Summin elements on the rows of a specific page of a matrix

1 vue (au cours des 30 derniers jours)
kevin cecere palazzo
kevin cecere palazzo le 30 Juil 2019
If I have a matrix A(n,m,2) i.e. a two pages matrix, and a vector B(n,1), how should I write the expression for the j-th element of b, if I want B to contain the sum of the elements of the rows of the first page of A?

Réponse acceptée

Guillaume
Guillaume le 30 Juil 2019
B = sum(A(:, :, 1), 2); %sum 1st page of A across the columns (across the 2nd dimension)

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by