Main Content

readall

Class: matlab.io.datastore.SimulationDatastore
Package: matlab.io.datastore

Read all data in datastore

Syntax

data = readall(dst)

Description

data = readall(dst) returns all the data in the datastore (matlab.io.datastore.SimulationDatastore object) specified by dst.

If all the data in the datastore does not fit in memory, readall returns an error. To determine how many samples (time steps) a datastore holds, inspect the NumSamples property of the SimulationDatastore object.

Input Arguments

expand all

Input datastore, specified as a matlab.io.datastore.SimulationDatastore object. To create a SimulationDatastore object, see matlab.io.datastore.SimulationDatastore.

Output Arguments

expand all

All data in the datastore, returned as a timetable object. For information about timetable, see Timetables.

Version History

Introduced in R2017a