Output of struct.fieldname

"patient" is a 1x3 struct with "billing" being a fieldname. When I issue patient.billing, I get this:
>> patient.billing
ans =
127
ans =
28.500000000000000
ans =
23.300000000000001
Why is each value displayed separately? How do I collect the output into one variable?

 Accepted Answer

[patient.billing]
You are seeing "structure expansion", which is similar to cell array expansion. The output of
patient.billing
is the same as if you had typed
patient(1).billing, patient(2).billing, patient(3).billing, .... patient(end).billing
as a comma separated list. These will be treated as if you had typed separate arguments, so if for example you had used
sum(patient.billing)
that would be the same as
sum(127, 28.5, 23.3)
and it would then try (and fail) to use the 28.5 as the dimension number that sum expects for its second argument.
[patient.billing]
works because [] is the list building operator, and with comma separated lists is equivalent to horzcat()
horzcat(127, 28.5, 23.3)
being well defined

6 Comments

This answers my question. Thanks.
Aside: I just realized, after reading the 3rd code block in your answer, that
>> 12,13,14
is actually valid. So is:
>> 12;13;14
Which I expect. But
>> 12 13 14
is not.
I always knew ';' and line breaks are used to separate statements. But it seems ',' works too. Is this use of the comma, to separate statements, documented somewhere?
"You also can enter more than one statement on the same line by separating statements. To distinguish between commands, end each one with a comma or semicolon. Commands that end with a comma display their results, while commands that end with a semicolon do not. "
Great - thanks!
I just found that if the "patient" structure is the Property of a class, then this doesn't work:
[myClass.patient.billing]
This seems to be a bug?
Which version are you using? The behaviour of expansion changed in R2015b.
I am using R2014b.

Sign in to comment.

More Answers (0)

Products

Asked:

on 16 Dec 2015

Commented:

on 17 Dec 2015

Community Treasure Hunt

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

Start Hunting!