Thank you for your reply, I used the full path name and get it. Since I have gone through the documentation, and I need another help:
the data is in [1200 96 192] in the format of [time lat lon];
now I want to extract the data from 1 degree Lat and 110 degree Lon.
How may i do it?
From the documentation there is the firstIdx and lastIdx, as follows:
firstID= [1200 1 110];
lastID=[1200 2 111];
t=ds.data('pr',firstID,lastID);
but the result is not as i wanted. the expected result should be have 1200 of time slices for the location in between firstID and lastID. Instead I was given:
t(:,:,1) =
1.0e-004 *
0.0107 0.1034
t(:,:,2) =
1.0e-004 *
0.0106 0.1168
May I know what is the appropriate way to extract 1200 slices of data from 1 degree Lat and 110 degree Lon??