How do I retrieve individual elements from an object all at once?

1 次查看(过去 30 天)
Hi all,
I have an Object where I'd like to retrieve all elements at once instead of through a loop.
My object is set up like this:
ObjArr
# Item one First Name
# Item two Last Name
Instead of using code like this...
for k = 1:n
tempSTR{k} = ObjArr(k).Name;
end
...I'd like to use something like the code below to quickly pull out a vector of data across all elements.
tempSTR{} = ObjArr.Name;
Please help.
Thanks,
jason

采纳的回答

Sven
Sven 2012-7-13
编辑:Sven 2012-7-13
If the contents of your object's field is numeric, you can make a matrix like this:
myNumVector = [Object.myNum];
To get a cell of non-numeric data such as strings (or a cell of anything, really), just use:
myVarCell = {Object.myVar};
Or, to use your code:
for k = 1:n
tempSTR{k} = ObjArr(k).Name;
end
... can be replaced with:
tempSTR = {ObjArr.Name};
  2 个评论
Daniel Shub
Daniel Shub 2012-7-13
I think it should be
tempSTR = {ObjArr(1:n).Name};
Since we don't know how big ObjArris.
Jason
Jason 2012-7-13
Thanks all, both methods work, at least when pre-allcoating the size of the tempSTR. I also have double arrays and using [ ] instead of { } works there.

请先登录,再进行评论。

更多回答(1 个)

Daniel Shub
Daniel Shub 2012-7-13
Loren's blog has a post about OOP performance. Looping outside the object is slower than looping inside the method. You probably want to overload SUBSREF and get.Name to handle arrays.

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by