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


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


collect()是Ruby中的一個內置方法,在執行塊中給定的操作後,它會返回新矩陣。

用法: mat1.collect{|el| operation}

參數:該函數具有作為塊的參數,這是對所有元素執行的操作。


返回值:對所有元素執行操作後,它將返回新矩陣。

例子1

# Ruby program for collect() method in Matrix 
  
# Include matrix  
require "matrix"
  
# Initialize a matrix  
mat1 =  Matrix[[1, 21], [31, 18]]   
  
# Prints the value of mat1.collect 
# after multiplying all elements by 3  
puts  mat1.collect{|el| el*3}

輸出

Matrix[[3, 63], [93, 54]]

例子2

# Ruby program for collect() method in Matrix 
  
# Include matrix  
require "matrix"
  
# Initialize a matrix  
mat1 = Matrix[[13, 1, 5], [12, 1, 5], [11, 2, 5]]   
  
# Prints the value of mat1.collect 
# after adding 20 to all the elements  
puts  mat1.collect{|el| el+20}

輸出

Matrix[[33, 21, 25], [32, 21, 25], [31, 22, 25]]


相關用法


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