Borrar filtros
Borrar filtros

MAtrix

5 visualizaciones (últimos 30 días)
Mate 2u
Mate 2u el 28 de Mayo de 2012
Hi there I have a matrix of size 298 x 19. I want to have just one column, so 289x1, but it to be the addition of the row.
So I want to add all the columns to turn it to 298x1.

Respuesta aceptada

Oleg Komarov
Oleg Komarov el 28 de Mayo de 2012
Sum along dimension 2 (columns):
sum(A,2)

Más respuestas (1)

Thomas
Thomas el 28 de Mayo de 2012
is this what you need
q=rand(2,3) % random matrix 2x3
out=sum(q,2) % sum each row so output is just 1 column for each row

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by