Hi everybody,
When I execute the file seagrid2roms.m, an error appeared in the line 200.
disp(' ## Defining Dimensions...')
nc('xi_psi') = L;
The error is:
>> nc('xi_rho') = LP;
??? Error using ==> finite
FINITE is obsolete. USE ISFINITE instead.
Error in ==> ncdim.ncdim at 70
if ~finite(theDimsize), theDimsize = 0; end
Error in ==> netcdf.subsasgn at 91
result = ncdim(theDimname, other, self);
Someone know how to solve that?!
Thanks a lot!
Problem with seagrid2roms.m
-
- Posts: 34
- Joined: Wed Mar 11, 2009 4:24 pm
- Location: UFES
Re: Problem with seagrid2roms.m
just to use "isfinite" instead of "finite", i think. have a try...
Re: Problem with seagrid2roms.m
Yes ! That is the same way that I did !