home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l455 / 2.ddi / MUTOOLS2.DI$ / MTBLANKS.M < prev    next >
Encoding:
Text File  |  1993-03-11  |  179 b   |  12 lines

  1. function out = mtblanks(n)
  2.  if n == 0
  3.    out = [];
  4.  else
  5.    out = [];
  6.    for i=1:n
  7.      out = [out ' '];
  8.    end
  9.  end
  10. %
  11. % Copyright MUSYN INC 1991,  All Rights Reserved
  12.