Matlab is summing a row with a column
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello everyone:
Today I started working with Matlab 2017a and I found what I think is a bug. When I sum [1,2]+[1;2], Matlab is returning [2,3;3,4]. Do you know how to make Matlab warn me when I sum vectors with different dimmensions?
댓글 수: 0
채택된 답변
Image Analyst
2017년 6월 8일
It's not a bug. It's the way the new MATLAB works now. It's called "automatic expansion."
Mathematics Implicit Expansion: Apply element-wise operations and functions to arrays with automatic expansion of dimensions of length 1
Implicit expansion is a generalization of scalar expansion. With scalar expansion, a scalar expands to be the same size as another array to facilitate element-wise operations. With implicit expansion, the element-wise operators and functions listed here can implicitly expand their inputs to be the same size, as long as the arrays have compatible sizes. Two arrays have compatible sizes if, for every dimension, the dimension sizes of the inputs are either the same or one of them is 1. See Compatible Array Sizes for Basic Operations and Array vs. Matrix Operations for more information.
댓글 수: 2
Image Analyst
2017년 6월 8일
You're welcome. Thanks for accepting.
By the way, the image below explains it pretty well:

추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!