Azzera filtri
Azzera filtri

Extracting data from array

1 visualizzazione (ultimi 30 giorni)
Vinay Srinivasan
Vinay Srinivasan il 3 Gen 2020
Hello all,
I have a matlab data file called 'Event '. It is a collection of 100 events .In each event there are multiple event(lets assume 10 sub events). I want to extract 5th event from all the 100 events . How can I write the code ?
  2 Commenti
David Hill
David Hill il 3 Gen 2020
Need to provide an example of the data if you want help.
Vinay Srinivasan
Vinay Srinivasan il 3 Gen 2020
Ok 100 events which I mentioned are the events of 100 cars which is driving on a road. Each car event has many data like car type,number of passenger,etc. I want to extract number of passengers from each car .

Accedi per commentare.

Risposta accettata

KALYAN ACHARJYA
KALYAN ACHARJYA il 3 Gen 2020
Modificato: KALYAN ACHARJYA il 3 Gen 2020
If the event data is an array, then
Event=[100 data number];
%I want to extract 5th event
data=Event(5)
If the event data each element itself as an array, then use cell array
Event={...100 data number};
%I want to extract 5th event
data=Event{5}
Each car event has many data like car type,number of passenger,etc
Preferbly cell array, which can hold any types of data, if its only series of numeric then just array.

Più risposte (0)

Categorie

Scopri di più su Data Type Conversion in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by