| Language Reference |
computes the block transpose
The value returned by the BTRAN function is a
matrix, the block transpose
of
, where the blocks are
.
For example, the following statements produce the matrix
, as shown:
z=btran({1 2 3 4,
5 6 7 8},2,2);
print z;
Z 4 rows 2 cols (numeric)
1 2
5 6
3 4
7 8
Copyright © 2009 by SAS Institute Inc., Cary, NC, USA. All rights reserved.