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

2 vues (au cours des 30 derniers jours)
Jessie
Jessie le 18 Sep 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?

Réponses (2)

madhan ravi
madhan ravi le 18 Sep 2020

Star Strider
Star Strider le 18 Sep 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.

Catégories

En savoir plus sur Operators and Elementary Operations 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