Struct array

1 次查看(过去 30 天)
Mate 2u
Mate 2u 2012-2-20
Hi I have a 1x100 struct array called data. In this array I need all the elements bidPrice.
data.bidPrice gives me one element how can I easily get all of the bid prices in a normal array?

采纳的回答

Andrei Bobrov
Andrei Bobrov 2012-2-20
out = [data.bidPrice]
or
out = cat(1,data.bidPrice)
ets.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Structures 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by