home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a075 / 1.img / TOOLKIT1.EXE / SST168.PRG < prev    next >
Encoding:
Text File  |  1989-08-08  |  356 b   |  16 lines

  1. ********************
  2.  
  3. FUNCTION Matrix
  4.  
  5.    PARAMETERS _matbase, _matx, _maty
  6.  
  7.    IF PCOUNT() < 3 .OR. (_matbase < 0 .OR. _matx < 0 .OR. _maty < 0)
  8.       * Error due to too few parameters or there is a negative
  9.       * number in one of the parameters
  10.       RETURN(0)
  11.    ENDIF
  12.       
  13.    RETURN(((_matx - 1) * _matbase) + _maty)
  14.  
  15. * End of File
  16.