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