MATLAB: Extract a range of data acording to the date range from a table

data acquisition

I want to separate months of the year from a table into another table for each season.

Best Answer

There's only four seasons, best to not overthink this.
spring = t(ismember(month(t.Time),1:3),:);
etc. But Guillaume's advice is worth thinking about.