empty cell array value lost when passed to a function as a part of an anonymous structure
이전 댓글 표시
Consider the following:
>> x % x is a simple two-field structure
x =
x: 1
y: 'y'
>> type('printMe.m') % printMe is just a simple function
function printMe(x)
size(x), x
>> printMe(x)
ans =
1 1
x =
x: 1
y: 'y'
>> printMe(struct('x', 1, 'y', 'y')) % Same result passing in an equivalent anonymous struct
ans =
1 1
x =
x: 1
y: 'y'
>> % But look what happens if one of the values is an empty cell array
>> printMe(struct('x', 1, 'y', {}))
ans =
0 0
x =
0x0 struct array with fields:
x
y
>> % Is this because it's empty
>> printMe(struct('x', 1, 'y', ''))
ans =
1 1
x =
x: 1
y: ''
>> printMe(struct('x', 1, 'y', []))
ans =
1 1
x =
x: 1
y: []
>> printMe(struct('x', 1, 'y', struct))
ans =
1 1
x =
x: 1
y: [1x1 struct]
>> % Apparently not!
So, apparently, if (and only if) a value in an anonymous struct passed to a function is an empty cell array, the function "loses" all the values in the anonymous struct and thinks it's empty (though, curiously, it doesn't completely "lose" the struct and in particular it retains "knowledge" of its fields, just not the values assigned to those fields).
Bug or "feature," and if the latter, rationale?
Thanks for your time,
OlyDLG
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Structures에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!