How open a nc file in matlab

92 visualizzazioni (ultimi 30 giorni)
Jonathan Demmer
Jonathan Demmer il 5 Mag 2016
Commentato: suchitra rani il 14 Ago 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

Risposte (1)

KSSV
KSSV il 5 Mag 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 Commenti
Jonathan Demmer
Jonathan Demmer il 8 Giu 2016
Thank you very much!!!!!
suchitra rani
suchitra rani il 14 Ago 2019
can we open an grey scale image which was in netcdf format in matlab.

Accedi per commentare.

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by