El * es un método incorporado en Ruby devuelve un vector al multiplicar el vector por x
Sintaxis : vec1 * x
Parámetros : La función no acepta ningún parámetro.
Valor devuelto : Devuelve un vector multiplicando el vector por x
.
Ejemplo 1 :
#Ruby program for* method in Vector #Include matrix require "matrix" #Initialize the vector vec1 = Vector[1, 2] #Initialize the vector x = 3 #prints the new vector puts vec1 * x
Salida :
Vector[3, 6]
Ejemplo 2 :
#Ruby program for* method in Vector #Include matrix require "matrix" #Initialize the vector vec1 = Vector[1, 2, 3] #Initialize the vector x = 3 #prints the new vector puts vec1 * x
Salida :
Vector[3, 6, 9]