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


Scala Matrix +用法及代碼示例


+是一個內置方法紅 gems 返回一個由兩個矩陣 mat1 和 mat2 相加而成的矩陣。

用法: mat1 + mat2

參數:該函數需要兩個矩陣mat1和mat2相加。

返回值:返回相加後的結果矩陣。

示例 1


# Ruby program for + method in Matrix 
# Include matrix  
require "matrix"
   
# Initialize a matrix  
mat1 = Matrix[[1, 2, 6], [3, 4, 8], [12, 1, 3]]  
mat2 = Matrix[[1, 2, 6], [3, 4, 8], [12, 1, 3]]  
   
# Prints the value of mat1+mat2 
puts  mat1 + mat2 

輸出

Matrix[[2, 4, 12], [6, 8, 16], [24, 2, 6]]

示例 2


# Ruby program for + method in Matrix 
# Include matrix  
require "matrix"
   
# Initialize a matrix  
mat1 = Matrix[[1, 21, 6], [31,124, 18]]  
mat2 = Matrix[[1, 12, 16], [31, 43, 28]]  
   
# Prints the value of mat1+mat2 
puts  mat1 + mat2 

輸出

Matrix[[2, 33, 22], [62, 167, 46]]

相關用法


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