testing
[wrf-fire-matlab.git] / femwind / big.m
blobb5eefc025b7f1eb445f69710366cc00a08e30310
1 function v=big(A)
2 % v=big(A)
3 % max abs element of nD matrix
4     v=full(max(abs(A(:))));
5 end