Help for this page

Select Code to Download


  1. or download this
        # pseudocode
        for row (0..rows) {
    ...
                  print array[row][col]
            }
        }
    
  2. or download this
        # pseudocode
        for row (@goodrows) {
    ...
                  print array[row][col]
            }
        }
    
  3. or download this
    @gm=map { [ @$_[@goodcols] ] } @matrix[@goodrows];