tropdet {Rtropical} | R Documentation |
Compute the tropical determinant for a given matrix. This is equivalent to solving an assignment problem.
tropdet(x)
x |
a square matrix |
The determinant of the given matrix,
R <- matrix(sample(1:9, 9), nrow = 3)
tropdet(R)