Undefined function or variable 'netcdf'
6 ビュー (過去 30 日間)
古いコメントを表示
Hi !
i have a probleme , i want to run the (netcdf) function but i don't know how to download the package and include it in matlab .
could anyone help me please
clear;clc;close all;
% script crée une bathymétrie pour le modèle SWAN bathym fine ~70m (fichier
%origine) qu'on interpole à 1km pour l'expèrience avec swan resolution=
%dx=dy=1*1 km à partir des données gmrt-map-tool
f=netcdf('algiers_bay.grd','r');
lon=f{'lon'}(:);
lat=f{'lat'}(:);
d=f{'altitude'}(:);
fillval=f{'altitude'}.FillValue_(1);% fillvals c des NaN!
0 件のコメント
回答 (1 件)
Neuropragmatist
2020 年 7 月 23 日
I think your line is supposed to be:
f = netcdf.open('algiers_bay.grd','r');
Because netcdf on it's own doesn't do anything, it is a library of functions that are accessed by prefixing with 'netcdf'.
Hope this helps.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!