Azzera filtri
Azzera filtri

Struct array

1 visualizzazione (ultimi 30 giorni)
Mate 2u
Mate 2u il 20 Feb 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?

Risposta accettata

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

Più risposte (0)

Categorie

Scopri di più su Structures in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by