Skip to content

Commit a0200a4

Browse files
alyssaistranslunar
authored andcommitted
Fix incorrect reference in .load_matlab_file (#592)
Fixes #587.
1 parent a98d7fd commit a0200a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/nmatrix/nmatrix.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class << self
9797
# * *Returns* :
9898
# - A Mat5Reader object.
9999
def load_matlab_file(file_path)
100-
NMatrix::IO::Mat5Reader.new(File.open(file_path, 'rb')).to_ruby
100+
NMatrix::IO::Matlab::Mat5Reader.new(File.open(file_path, 'rb')).to_ruby
101101
end
102102

103103
# call-seq:

0 commit comments

Comments
 (0)