Sha256: 22cad9c3a817d4215e42baf83fcde598ce51546a68e6d7eee1fbf1549f1a70c8

Contents?: true

Size: 1004 Bytes

Versions: 22

Compression:

Stored size: 1004 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
a = GSL::Matrix.alloc([1, 2, 3, 4, 5, 6, 7, 8, 9], 3, 3)

# Find maximum
a.max

# Find minimum
a.min

# Find minimum and maximum
a.minmax

# Find index of maximimum
a.max_index

# Find index of minimimum
a.min_index

# Find indices of minimum and maximum
minmax_idx = a.minmax_index

# Use minmax_idx to get minimnum
a[minmax_idx[0]]

# Use minmax_idx to get maximnum
a[minmax_idx[1]]

# Show that #isnull returns 0 for non-null Matrix
a.isnull

# Show that #isnull? returns false for non-null Matrix
a.isnull?

# Set all elements to zero
a.set_zero

# Show that #isnull returns 1 for null Matrix
a.isnull

# Show that #isnull? returns true for null Matrix
a.isnull?
END

Version data entries

22 entries across 22 versions & 4 rubygems

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