ts_readslice.R only prints variables info
[wrf-fire-matlab.git] / femwind / write_array_nd.m
blob65526dedc70bf168cbe1f0e8490358019e017064
1 function write_array_nd(a,name)
2 % write_array_nd(a,name)
3 % Purpose: write nd matrix 
5 % Arguments
6 % a         nd matrix, the array to be written
7 % name  string, the name of the file
8
9 if ~isnumeric(a)
10     error('matrix must be numeric array')
11 end
12 filename=[name,'.txt'];
13 s = size(a);
14 n = length(s);
15 fprintf('writing matrix size %g %g %g %g %g %g %g',s) 
16 fprintf('to file %s\n',filename)
17 h=fopen(filename,'w');
18 fprintf(h,'%i\n',456,n,s);
19 fprintf(h,'%.12g\n',a);
20 fclose(h);
21 end