![]() |
| advanced |
|
More precisely, monotony for matrices is defined as follows.
Let K be a totally ordered set,
a matrix over K and
for
:
the (leftmost) column containing the maximum entry in row i. M is called monotone, iff
M is totally monotone, iff all of its submatrices are
monotone (or equivalently: iff all
submatrices are monotone).
#include <CGAL/monotone_matrix_search.h>
|
| ||||||
|
|
| |||||
computes the maximum (as specified by compare_strictly) entry for each row of m and writes the corresponding column to t, i.e. t[i] is set to the index of the column containing the maximum element in row i. The maximum of a row is the leftmost element for which compare_strictly is false for all elements in .
Precondition: t points to a structure of size at least
m.number_of_rows()
Requirement:
| advanced |
|