Indexing structure array. Every first entry of an vector.
显示 更早的评论
Hello, I have stored a lot of vectors in the fields of an structure array and i want to get every first element. s is an 1xN struct. field1 contains the vector
a = s(1:end).field1(1)
or
a = s.field1(1)
give the same error "Expected one output from a curly brace or dot indexing expression, but there were N results."
1 个评论
Stephen23
2018-10-25
"Expected one output from a curly brace or dot indexing expression, but there were N results."
Because you are generating a comma-separated list:
采纳的回答
更多回答(1 个)
Walter Roberson
2018-10-25
arrayfun(@(S) S.field1(1), s)
类别
在 帮助中心 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!