repo.or.cz
/
wrf-fire-matlab.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
adding balbi_atm.m
[wrf-fire-matlab.git]
/
netcdf
/
ncextract.m
blob
b469bbbc5579076e737a39f84f3e496113323da3
1
function v=ncextract(p)
2
% v=ncextract(p)
3
% extract v as matlab array from structure returned by ncdump
4
% for one variable
5
6
% Jan Mandel, September 2008
7
8
v=squeeze(double(p.var_value));
9
end