row vector and column vector addition

42 visualizaciones (últimos 30 días)
Mike Pesselse
Mike Pesselse el 30 de Ag. de 2019
Editada: Stephen23 el 30 de Ag. de 2019
I dont understand why I'm able to add rowvector w to columnvector v. I should get an error right?
w = [1 2 3];
v = [4;5;6];
x = v + w
x =
5 6 7
6 7 8
7 8 9

Respuesta aceptada

Stephen23
Stephen23 el 30 de Ag. de 2019
Editada: Stephen23 el 30 de Ag. de 2019
"I should get an error right?"
Not since R2016b:
The documentation explains what size arrays can be used together with such operators:
Note also that the plus documentation includes links to that second page (the links are within the descriptions of both of the input arguments). This is why it is strongly recommended to read the documentation for all operators that you use, no matter how trivial you may think that operator is: reading the documentation significantly reduces surprises.

Más respuestas (0)

Categorías

Más información sobre Particle Swarm 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