Class: GSL::Vector
Class Method Summary collapse
Instance Method Summary collapse
- #* ⇒ Object
- #[] ⇒ Float
- #[]= ⇒ Float
- #col ⇒ Vector
- #collect {|arg0| ... } ⇒ Vector
- #each {|arg0| ... } ⇒ void
- #normalize ⇒ Vector
- #row ⇒ Vector
- #size ⇒ Integer
- #sum ⇒ Float
- #to_a ⇒ Array[Float]
Class Method Details
Instance Method Details
#[] ⇒ Float
9 |
# File 'sig/vendor/gsl.rbs', line 9
def []: (Integer) -> Float
|
#[]= ⇒ Float
10 |
# File 'sig/vendor/gsl.rbs', line 10
def []=: (Integer, Float) -> Float
|
#collect {|arg0| ... } ⇒ Vector
15 |
# File 'sig/vendor/gsl.rbs', line 15
def collect: () { (Float) -> Float } -> Vector
|
#each {|arg0| ... } ⇒ void
This method returns an undefined value.
8 |
# File 'sig/vendor/gsl.rbs', line 8
def each: () { (Float) -> void } -> void
|
#size ⇒ Integer
11 |
# File 'sig/vendor/gsl.rbs', line 11
def size: () -> Integer
|
#sum ⇒ Float
7 |
# File 'sig/vendor/gsl.rbs', line 7
def sum: () -> Float
|