Sha256: 7f7146f5b9c9a292ca4bd907fc169e275fe6472e95bd8a8644a77089b3e9d3e2

Contents?: true

Size: 574 Bytes

Versions: 22

Compression:

Stored size: 574 Bytes

Contents

#!/usr/bin/env ruby
# Turn on warnings
$-w = true

require 'irb/xmp'
require 'gsl'

# Apparently, IRB::Frame has a bug that prevents the defaults from working, so
# an XMP instance must be created explicitly this way instead of using the
# otherwise convenient xmp method.
XMP.new(IRB::Frame.top(-1)).puts <<END
# Create test Matrix
m = GSL::Matrix.alloc([1, 2], [3, 4])

# Write Matrix in binary format to file a.dat
m.fwrite("a.dat")

# Create another test Matrix
m2 = GSL::Matrix.alloc([5, 6], [7, 8])

# Write Matrix in text format to file b.dat
m2.fprintf("b.dat")
END

Version data entries

22 entries across 22 versions & 4 rubygems

Version Path
gsl-2.1.0.3 examples/matrix/write.rb
gsl-2.1.0.2 examples/matrix/write.rb
gsl-2.1.0.1 examples/matrix/write.rb
gsl-2.1.0 examples/matrix/write.rb
gsl-1.16.0.6 examples/matrix/write.rb
rb-gsl-1.16.0.5 examples/matrix/write.rb
rb-gsl-1.16.0.4 examples/matrix/write.rb
rb-gsl-1.16.0.3 examples/matrix/write.rb
rb-gsl-1.16.0.3.rc1 examples/matrix/write.rb
gsl-nmatrix-1.15.3.2 examples/matrix/write.rb
gsl-nmatrix-1.15.3.1 examples/matrix/write.rb
rb-gsl-1.16.0.2 examples/matrix/write.rb
rb-gsl-1.16.0.1 examples/matrix/write.rb
rb-gsl-1.16.0 examples/matrix/write.rb
rb-gsl-1.15.3.2 examples/matrix/write.rb
rb-gsl-1.15.3.1 examples/matrix/write.rb
blackwinter-gsl-1.15.3.2 examples/matrix/write.rb
gsl-nmatrix-1.15.3.0 examples/matrix/write.rb
gsl-1.15.3 examples/matrix/write.rb
gsl-1.14.7 examples/matrix/write.rb