El + es un método incorporado en Ruby devuelve la suma de dos vectores
Sintaxis : vec1 + vec2
Parámetros : La función no acepta ningún parámetro.
Valor devuelto : Devuelve la suma de dos vectores.
Ejemplo 1 :
#Ruby program for + method in Vector #Include matrix require "matrix" #Initialize the vectors vec1 = Vector[1, 2] vec2 = Vector[1, 4] #prints the new vector puts vec1 + vec2
Salida :
Vector[2, 6]
Ejemplo 2 :
#Ruby program for + method in Vector #Include matrix require "matrix" #Initialize the vectors vec1 = [ 1, 4, 5 ] vec2 = [ 1, 4, 7 ] #prints the new vector puts vec1 + vec2
Salida :
Vector[2, 8, 12]