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]]
相關用法
- Ruby Enumerable collect()用法及代碼示例
- Ruby Array collect()用法及代碼示例
- Ruby Array collect!()用法及代碼示例
- Ruby Matrix eql?用法及代碼示例
- Ruby Matrix lup()用法及代碼示例
- Ruby Matrix row()用法及代碼示例
- Ruby Matrix zero?()用法及代碼示例
- Ruby Matrix t()用法及代碼示例
- Ruby Matrix inv()用法及代碼示例
- Ruby Matrix tr()用法及代碼示例
- Ruby Matrix zero()用法及代碼示例
- Ruby Matrix I()用法及代碼示例
- Ruby Matrix det()用法及代碼示例
- Ruby Matrix rect()用法及代碼示例
- Ruby Matrix eigen()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Matrix collect() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。