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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。