Method: MyMatrix#concatFile

Defined in:
lib/mymatrix.rb

#concatFile(file, opt = {}) ⇒ Object



867
868
869
870
871
872
# File 'lib/mymatrix.rb', line 867

def concatFile(file, opt={})
	#p file
	mx = MyMatrix.new(file)
	self.concat(mx, opt)
	return self
end