1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
#!/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
# These examples show all(?) the ways that a Vector::Complex::Complex::View can
# be created using Vector::Complex#subvector or its alias Vector::Complex#view.
# Note that Vector::Complex#get or, more commonly, its alias Vector::Complex#[]
# can also be used to create a Vector::Complex::View. See
# examples/vector/complex_get_all.rb for more examples.
# Create test vector v
v = GSL::Vector::Complex.indgen(9)
# Vector::Complex#view with zero args returns a Vector::Complex::View of entire
# Vector::Complex.
v.view
# Vector::Complex#view with one Fixnum argument, i, returns a
# Vector::Complex::View of the first i'th elements if i is positive or the last
# i'th elements if i is negative.
v.view(3)
v.view(-3)
# Vector::Complex#view with one Range argument returns a Vector::Complex::View
# of the specified elements. If the begin value is greater than the end value,
# the View will have the elements in reverse order. If begin and/or end value
# is negative, the value is taken to be "size-n".
v.view(1..4)
v.view(4..1)
v.view(1...4)
v.view(4...1)
v.view(4..-2)
v.view(-2..4)
v.view(4...-2)
v.view(-2...4)
v.view(-4..8)
v.view(8..-4)
v.view(-4...8)
v.view(8...-4)
v.view(-5..-2)
v.view(-2..-5)
v.view(-5...-2)
v.view(-2...-5)
# Vector::Complex#view with a Range argument and a Fixnum argument is like a
# single Range argument, but with a stride given by the Fixnum argument.
v.view(1..7, 3)
v.view(7..1, 3)
v.view(1...7, 3)
v.view(7...1, 3)
# Vector::Complex#view with two Fixnum arguments is offset, length. If offset
# is negative, it means size+offset. If length is negative, it means step is
# -1.
v.view(2, 4)
v.view(4, 2)
v.view(-4, 2)
v.view(-2, -4)
# Vector::Complex#view with three Fixnum arguments is offset, stride, length.
# If offset is negative, it means size+offset. If length is negative, the sign
# of both stride and length is inverted.
v.view(1, 2, 3)
v.view(1, -2, -3)
v.view(-1, -2, 3)
v.view(-1, 2, -3)
END
|