Sha256: 0b93d6c5b7651a1a86c5d5900357b6a35ce5d73c5a0aa149924a73ff896a3151

Contents?: true

Size: 633 Bytes

Versions: 22

Compression:

Stored size: 633 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
# Crete test matrix m
m = GSL::Matrix[[1, 2, 3, 4, 5, 6, 7, 8 ,0], 3, 3]

# Calculate determinant of m
m.det

# Calculate trace of m (sum of diagonal elements)
m.trace

# Convert to Matrix::Complex mz
mz = m.to_complex

# Calulate determinant of mz
mz.det

# Calculate trace of mz (sum of diagonal elements)
mz.trace
END

Version data entries

22 entries across 22 versions & 4 rubygems

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