Why didn't I get an error for my matrices?

1 visualización (últimos 30 días)
Jessie
Jessie el 18 de Sept. de 2020
Respondida: Star Strider el 18 de Sept. de 2020
So I created a 3x3 matrix and created another 3x1 matrix. I thought adding matrices with different dimensions should result in an error but when I performed the addition it added the 3x1 matrix to the first column of the 3x3 matrix. Why did MATLAB do this?

Respuestas (2)

madhan ravi
madhan ravi el 18 de Sept. de 2020

Star Strider
Star Strider el 18 de Sept. de 2020
You are seeing ‘Automatic Implicit Expansion’ introduced in R2016b (much to the consternation of many of us). Previously, the operation you wrote would have thrown an error, and to get the result you did would have required using the bsxfun function.
Note that it added the column vector ‘b’ to every column of your (3x3) matrix ‘A’, not only the first column.

Categorías

Más información sobre Operators and Elementary Operations 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