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