Dear all,
Today's git help entry for max
does not mention matrix argument
But
set seed 13
matrix a_matrix = mnormal(10^4,10^4)
set stopwatch
ma1 = max(vec(a_matrix))
eval $stopwatch
set stopwatch
ma2 = maxc(maxr(a_matrix))
eval $stopwatch
I have 1.6487076 sec for max(vec..
and 7.9388368 sec for the second version
And the first version seems to be doomed
for deprecation
Oleh