home *** CD-ROM | disk | FTP | other *** search
- function aa = unstkr(a,m,n)
- % UNSTKR unstack a long column vector into a mxn matrix, row by row.
-
- % R. Y. Chiang & M. G. Safonov 5/85
- % Revised 8-12-88 JNL
- % Copyright (c) 1988 by the MathWorks, Inc.
- % All Rights Reserved.
-
- aa = zeros(n,m);
- aa(:) = a;
- aa = aa';
- %
- % ----- End of UNSTKR.M --- RYC/MGS %