Info

This question is closed. Reopen it to edit or answer.

2016b provides an answer to the operation [1 2 3 4 5].' + [1 2 3 4] whereas 2015b indicates 'Matrix dimensions must agree'. 2016b's behaviour is not clearly documented. Is it correct?

1 view (last 30 days)
2016b
a=1:5
a =
1 2 3 4 5
K>> b=1:4
b =
1 2 3 4
K>> a.' + b
ans =
2 3 4 5
3 4 5 6
4 5 6 7
5 6 7 8
6 7 8 9

Answers (1)

Walter Roberson
Walter Roberson on 29 Jun 2016
You are using R2016a Preview, which had that (undocumented) behaviour as a test; it did not make it into R2016a official release.
  2 Comments
Walter Roberson
Walter Roberson on 29 Jun 2016
Wait, are you using R2016a Preview, or R2016b Preview? What you describe was present in R2016a Preview and was removed for full release. If you are talking about R2016b Preview, then that is something that cannot be discussed here (the Non-Disclosure Agreement does not permit public discussion of the preview releases.)

This question is closed.

Community Treasure Hunt

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

Start Hunting!