home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1998 April / DPPCPRO0498.ISO / April / MathCad / SETUP / DATA.Z / zeros.mxs < prev    next >
Encoding:
Text File  |  1997-06-03  |  630 b   |  18 lines

  1. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  2.  *                                                                     *
  3.  * Copyright (c) 1997 MathSoft, Inc. All Rights Reserved.              *
  4.  *                                                                     *
  5.  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  6. /*
  7.  *  Function:  zeros ( r, c )
  8.  *
  9.  *  Description:
  10.  *      Returns a matrix of r rows and c columns full of zeros.
  11.  *
  12.  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  13.  
  14. function zeros ( r, c )
  15.  
  16.   zeros = fill(r,c,0);
  17.  
  18. end