Determine whether datastore is partitionable
tf = isPartitionable(
returns logical
ds
)1
(true
) if the datastore ds
is
partitionable. Otherwise, the result is logical 0
(false
).
TransformedDatastore
is partitionable if all underlying
datastores are partitionable.
CombinedDatastore
is partitionable if all underlying datastores
have a subset
method or are transformations/combinations of datastores that have
subset
methods.
Custom datastore classes are partitionable if they subclass from
matlab.io.datastore.Partitionable
.
You can use the partition
function on partitionable
datastores to create partitions for parallel processing with Parallel Computing Toolbox™.