How open a nc file in matlab

140 views (last 30 days)
Jonathan Demmer
Jonathan Demmer on 5 May 2016
Commented: suchitra rani on 14 Aug 2019
hi everybody,
I tried to open a file.nc downloaded on aviso+ website. However, a message error appears:
>> load E:\cool.nc Error using load Number of columns on line 2 of ASCII file E:\cool.nc must be the same as previous lines.
Could someone help me please?
Thank you
jonathan

Answers (1)

KSSV
KSSV on 5 May 2016
You cannot use load to read a nc file.....
ncfile = 'yourfile.nc' ; % nc file name
% To get information about the nc file
ncinfo(ncfile)
% to display nc file
ncdisp(ncfile)
% to read a vriable 'var' exisiting in nc file
myvar = ncread(ncfile,'var') ;
  2 Comments
Jonathan Demmer
Jonathan Demmer on 8 Jun 2016
Thank you very much!!!!!
suchitra rani
suchitra rani on 14 Aug 2019
can we open an grey scale image which was in netcdf format in matlab.

Sign in to comment.

Categories

Find more on Data Import and Analysis in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!