Sha256: d909fd2b74e8d5b02dba4b38f243c24748cdddb95460abbcaf738d9c073ef052
Contents?: true
Size: 654 Bytes
Versions: 22
Compression:
Stored size: 654 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 matrix with diagonal given by Range GSL::Matrix.diagonal(1..3) # Create matrix with diagonal given by Array GSL::Matrix.diagonal([1, 2, 3]) # Create matrix with diagonal given by GSL::Vector GSL::Matrix.diagonal(GSL::Vector.indgen(3,1)) # Create matrix with diagonal given by individual elements GSL::Matrix.diagonal(1, 2, 3) END
Version data entries
22 entries across 22 versions & 4 rubygems