Ruby | Función array row_size()

Row_size () es un método incorporado en Ruby que devuelve el número de filas en la array dada.

Sintaxis : mat1.row_size()

Parámetros : La función no toma ningún parámetro obligatorio.

Valor devuelto : Devuelve el número de filas de la array.

Ejemplo 1 :

# Ruby program for row_size() method in Matrix
  
# Include matrix 
require "matrix"
  
# Initialize a matrix 
mat1 = Matrix[[6, 432], [54, 323]]  
  
# Prints the number of rows
puts  mat1.row_size()

Salida :

2

Ejemplo 2 :

# Ruby program for row_size() method in Matrix
  
# Include matrix 
require "matrix"
  
# Initialize a matrix 
mat1 = Matrix[[1, 1, 1],[2, 2, 2],[3, 5, 6]]  
  
# Prints the number of rows
puts  mat1.row_size()

Salida :

3

Publicación traducida automáticamente

Artículo escrito por gopaldave y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *