Undefined function or variable 'netcdf'

조회 수: 8 (최근 30일)
wassim boulala
wassim boulala 2020년 6월 7일
답변: Neuropragmatist 2020년 7월 23일
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!

답변 (1개)

Neuropragmatist
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.

Community Treasure Hunt

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

Start Hunting!