home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 63 / CDACTUAL63.iso / Aplicaciones / DarkBasic / DemoDarkBasic.exe / help / examples / matrix3d / exam01.dba next >
Encoding:
Text File  |  2000-04-09  |  529 b   |  23 lines

  1. Rem * Title  : A Simple Matrix
  2. Rem * Author : DBS-LB
  3. Rem * Date   : 1st Sept 99
  4. rem ==========================================
  5. rem DARK BASIC EXAMPLE PROGRAM 1
  6. rem ==========================================
  7. rem This program will create a simple matrix
  8. rem ------------------------------------------
  9.  
  10. rem Make a matrix
  11. make matrix 1,10000.0,10000.0,25,25
  12.  
  13. rem Randomize the matrix
  14. randomize matrix 1,50
  15.  
  16. rem Wait for a key press
  17. suspend for key
  18.  
  19. rem Delete the matrix
  20. delete matrix 1
  21.  
  22. rem End the program
  23. end