How do I add column vector to a matrix ? Documentation examples does not work.
66 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
norcalpedaler
el 30 de Nov. de 2016
Comentada: Guillaume
el 30 de Nov. de 2016
I copied this example directly from the documentation and it returns error "Matrix dimensions must agree". What is going on? A = [1 2 3; 4 5 6] A =
1 2 3
4 5 6
b = [10; 100] b =
10
100
A + b ans =
11 12 13
104 105 106
0 comentarios
Respuesta aceptada
Steven Lord
el 30 de Nov. de 2016
Implicit expansion was added as a feature in MATLAB in release R2016b. You're using an older release, one in which you would have to use the bsxfun function to explicitly ask for the same expansion behavior for vectors and matrices.
1 comentario
Guillaume
el 30 de Nov. de 2016
in other words, in older versions:
bsxfun(@plus, A, b)
Más respuestas (1)
dbmn
el 30 de Nov. de 2016
hi,
this works like this
A=[A, b]
2 comentarios
dbmn
el 30 de Nov. de 2016
Sorry, i understood that the wrong way.
I might still not fully understand it. Can you give an example of how the output should look like?
Something like this?
sum(A+b)
ans =
115 117 119
Or this?
cumsum(A+b)
ans =
11 12 13
115 117 119
Or this?
cumsum(sum(A+b))
ans =
115 232 351
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!