當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Matrix row_size()用法及代碼示例


row_size()是Ruby中的內置方法,它返回給定矩陣中的行數。

用法: mat1.row_size()

參數:該函數沒有任何強製性參數。


返回值:它返回矩陣中的行數。

例子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()

輸出

2

例子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()

輸出

3


相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Matrix row_size() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。