Matchings#
- solve_matching_matrices(matrix_1, matrix_2, length, inner_distance) float [source]#
Computes the minimal distance between two matrices.
- Parameters:
matrix_1 – First square matrix.
matrix_2 – Second square matrix.
length – Length of the matrix.
inner_distance – The inner distance (like L1 or L2).
- Returns:
Objective value
- Return type:
float