advanced |
#include <CGAL/Dynamic_matrix.h>
| |
initializes
d to m. m is not copied, we only
store a reference.
|
|
| |
returns the number of columns. | ||
|
| |
returns the number of rows. | ||
|
| |
returns the entry at position (row, column). Precondition: row number_of_rows() and column number_of_columns(). | ||
|
| |
replace
column old with column number new. Precondition: old, new number_of_columns(). | ||
|
| |
returns
a new Matrix consisting of all rows of d with even index,
(i.e. first row is row of d, second row is row of
d etc.). Precondition: number_of_rows() . | ||
|
| |
deletes the
rightmost columns, such that d becomes quadratic. Precondition: number_of_columns() number_of_rows(). Postcondition: number_of_rows() number_of_columns(). |
advanced |