Help for this page

Select Code to Download


  1. or download this
    void
    _do_matrix( char *in, long rows, long cols, char *out )
    ...
          out_matrix[i*rows+j]= val­ue;
        }
      }
    
  2. or download this
    sub do_matrix(\@) {
        my( $avMatrix )= @_;
        my( $rows )= 0+@$avMatrix;
    ...
        }
        return \@ret;
    }