adding balbi_atm.m
[wrf-fire-matlab.git] / netcdf / ncextract.m
blobb469bbbc5579076e737a39f84f3e496113323da3
1 function v=ncextract(p)
2 % v=ncextract(p)
3 % extract v as matlab array from structure returned by ncdump
4 % for one variable
6 % Jan Mandel, September 2008
8 v=squeeze(double(p.var_value));
9 end