tscollection
Determine if tscollection is empty
TF = isempty(tsc)
example
TF = isempty(tsc) returns a logical 1 (true) when tsc does not contain any timeseries members or a time vector, and 0 (false) otherwise.
tsc
true
timeseries
false
collapse all
Create a tscollection object and determine if it is empty.
ts = timeseries(); tsc = tscollection(ts); TF = isempty(tsc)
TF = logical 1
Input tscollection, specified as a scalar.
timeseries | tscollection
You have a modified version of this example. Do you want to open this example with your edits?