Skip to content

Instantly share code, notes, and snippets.

@Bajena

Bajena/block7.rb Secret

Created April 23, 2020 20:18
Show Gist options
  • Save Bajena/e5fc47e732692afc4c26947fa12ed746 to your computer and use it in GitHub Desktop.
Save Bajena/e5fc47e732692afc4c26947fa12ed746 to your computer and use it in GitHub Desktop.
require "matrix_boost/extension"
require "matrix"
module MatrixBoost
class << self
# @param m [Matrix] Stdlib Matrix instance
# @return [Matrix] Inverted matrix
def invert(m)
Matrix[*NativeHelpers.inv_matrix(m.to_a)]
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment