El norm() es un método incorporado en Ruby que devuelve la distancia pitagórica del vector.
Sintaxis : vec1.norm()
Parámetros : la función no acepta ningún parámetro.
Valor devuelto: Es la distancia pitagórica del vector
Ejemplo 1 :
# Ruby program for norm() method in Vector # Include matrix require "matrix" # Initialize the vector vec1 = Vector[1, 2, 3] # Prints pythogras of the vector puts vec1.norm()
Salida :
3.7416573867739413
Ejemplo 2 :
# Ruby program for norm() method in Vector # Include matrix require "matrix" # Initialize the vector vec1 = Vector[1, 1, 1] # Prints pythogras of the vector puts vec1.norm()
Salida :
1.7320508075688772