Namespace gopy.matrix
Sub-modules
gopy.matrix.matrix_class
gopy.matrix.matrix_operation
-
function based version of matrix operations, which are just 2D arrays
gopy.matrix.nth_fibonacci_using_matrix_exponentiation
-
Implementation of finding nth fibonacci number using matrix exponentiation. Time Complexity is about O(log(n)*8), where 8 is the complexity of matrix …
gopy.matrix.rotate_matrix
-
In this problem, we want to rotate the matrix elements by 90, 180, 270 (counterclockwise) Discussion in stackoverflow: …
gopy.matrix.searching_in_sorted_matrix
gopy.matrix.sherman_morrison
gopy.matrix.spiral_print
-
This program print the matix in spiral form. This problem has been solved through recursive way …