Effacer les filtres
Effacer les filtres

Struct array

1 vue (au cours des 30 derniers jours)
Mate 2u
Mate 2u le 20 Fév 2012
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?

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 20 Fév 2012
out = [data.bidPrice]
or
out = cat(1,data.bidPrice)
ets.

Plus de réponses (0)

Catégories

En savoir plus sur Structures dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by