I have two corresponded (has a relation and has the same dimension) dataset:
Time
Salinity
Some data in salinity dataset is NaN.
I can remove the NaN value by:
Salinity_new=Salinity(~isnan(Salinity))
But it will not correspond to the Time
dataset any more.
How can I remove the corresponded time in also?
Thanks