Skip to content

Instantly share code, notes, and snippets.

View d7om's full-sized avatar

Abdulrahman AlShetwi d7om

View GitHub Profile
<<<<<<< HEAD
# See http://help.github.com/ignore-files/ for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile ~/.gitignore_global
# Ignore bundler config
/.bundle
@d7om
d7om / matrix.rb
Created May 30, 2012 19:51 — forked from ecleel/matrix.rb
Example of how use matrix class in ruby
require 'matrix'
require 'pp'
# This is how you can define new matrix
a = Matrix[ [1,2], [3,4]]
b = Matrix[ [4,3], [2,1]]
pp a
pp b