In this subsection, you will learn how to divide two matrices using the Go code of divMat.go, which is going to be presented in five parts. The core function of divMat.go is called inverseMatrix(). What inverseMatrix() mainly implements is the calculation of the inverse matrix of a given matrix, which is a pretty complex task. There are ready-to-use Go packages that allow you to inverse a matrix, but I have decided to implement it from scratch.
The divMat.go utility requires a single ...