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
utilities
[wrf-fire-matlab.git]
/
util1_jan
/
big.m
blob
a77ae70d5442121a49b27c590d47b2532af118f3
1
function s=big(a)
2
% s=big(a)
3
% max absolute value of any array, arbitrary number of dimensions
4
s=big2(abs(a));
5
6
function s=big2(a)
7
if isvector(a),
8
s=full(max(a));
9
else
10
b=max(a,[],ndims(a));
11
s=big2(b);
12
end
13