Create FileDatastore object for collections of custom files
fds = fileDatastore(location,'ReadFcn',@fcn)
fds = fileDatastore(location,Name,Value)
creates
a datastore from the collection of files specified by fds
= fileDatastore(location
,'ReadFcn',@fcn
)location
and
uses the function fcn
to read the data from the
files. A datastore is a repository for collections of data that are
too large to fit in memory. After creating a FileDatstore
object,
you can read and process the data in various ways. See FileDatastore for
more information.
specifies
additional parameters for fds
= fileDatastore(location
,Name,Value
)fds
using one or more
name-value pair arguments. For example, you can specify which files
to include in the datastore depending on their extensions with fileDatastore(location,'ReadFcn',@customreader,'FileExtentions',{'.exts','.extx'})
.