add computation of tign2ros via grad function
[wrf-fire-matlab.git] / netcdf / private / ncdatatype.m
blobda388238d2b5676a907b247bff5aaceb9e01e58a
1 function [nc,m]=ncdatatype(d)
2 % function [nc,m]=ncdatatype(d)
3 % d = vartype or datatype from netcdf
4 % nc = 'TEXT' or 'DOUBLE' to create read statements 
5 % m =  guess of what the type actually is in matlab 
7 % Jan Mandel, September 2008
9 %types_nc={'', '', 'TEXT', 'DOUBLE','DOUBLE','DOUBLE','DOUBLE'};  %  ??? 
10 types_nc={'', '', 'text', 'short','int','float','double'};  %  ??? 
11 types_m= {'', '', 'char', 'int16','int32','single','double'};  %  ??? 
12 %         0    1    2       3       4     5        6
14 nc=types_nc{d+1};
15 m=types_m{d+1};
17 end