Effacer les filtres
Effacer les filtres

How open a nc file in matlab

89 vues (au cours des 30 derniers jours)
Jonathan Demmer
Jonathan Demmer le 5 Mai 2016
Commenté : suchitra rani le 14 Août 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

Réponses (1)

KSSV
KSSV le 5 Mai 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 commentaires
Jonathan Demmer
Jonathan Demmer le 8 Juin 2016
Thank you very much!!!!!
suchitra rani
suchitra rani le 14 Août 2019
can we open an grey scale image which was in netcdf format in matlab.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Data Import and Analysis dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by