bsxfun seems to return too few values

1 回表示 (過去 30 日間)
Lachlan
Lachlan 2016 年 7 月 28 日
編集済み: Stephen23 2016 年 7 月 28 日
In Matlab 2016a, the following command behaves as I expect:
>> bsxfun (@(x,y)((y-x)), [1], [3, 4])
ans =
2 3
However, this very similar command returns a scalar, instead of a 1x2 matrix:
>> bsxfun (@(x,y)(min(y-x)), [1], [3, 4])
ans =
2
Am I right in assuming this is a bug in bsxfun? If so, how can I report it. If not, could someone please explain this behaviour?

採用された回答

KSSV
KSSV 2016 年 7 月 28 日
bsxfun (@(x,y)((y-x)), [1], [3, 4])
It's output is 2, 3. The minimum value of (2,3) is 2..The second line
bsxfun (@(x,y)(min(y-x)), [1], [3, 4])
is giving you minimum value of the output....
I am using MATLAB2015a and I got the same result as said.
  2 件のコメント
Lachlan
Lachlan 2016 年 7 月 28 日
Ahh... I see now what the documentation means by "element-by-element function". I assumed that FUNC is called element-by-element, but it means that the answers are only sensible if applying FUNC to an array returns the same value as if it is applied element-by-element.
Thanks for your help.
Stephen23
Stephen23 2016 年 7 月 28 日
"I am using MATLAB2015a and I got the same result as said"
This does not answer the question "is this a bug?"

サインインしてコメントする。

その他の回答 (1 件)

Stephen23
Stephen23 2016 年 7 月 28 日
編集済み: Stephen23 2016 年 7 月 28 日
@Lachlan: this is a bug (or an undocumented "feature"), and you should report it. You can read how here:
When you read the bsxfun documentation it clearly states that "A binary element-wise function of the form C = fun(A,B) accepts arrays A and B of arbitrary, but equal size and returns output of the same size. Each element in the output array C is the result of an operation on the corresponding elements of A and B only. fun must also support scalar expansion, such that if A or B is a scalar, C is the result of applying the scalar to every element in the other input array."
The function you provided does not fulfill these conditions, because it returns scalar when provided with a vector and a scalar:
>> fun = @(x,y)min(y-x);
>> fun(1, [3, 4])
ans =
2
Note that scalar x was not expanded, as the documentation requires. So you are already using bsxfun outside of its documented functionality. The question is, what should bsxfun do when you provide an incorrect function that returns a scalar and not a vector?
By accepting this function and returning an undocumented output is at least misleading and at worst totally erroneous.
  1 件のコメント
Lachlan
Lachlan 2016 年 7 月 28 日
Thanks for the link. I've reported the issue, suggesting throwing an error for this input.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by