Ruby Vector *方法
*
是Ruby中的一个内置方法,通过将向量乘以x来返回一个向量。
语法 :vec1 * x
参数 :该函数不接受任何参数。
返回值 :它通过向量乘以x返回一个向量 。
例子 1 :
#Ruby program for* method in Vector
#Include matrix
require "matrix"
#Initialize the vector
vec1
= Vector[1, 2]
#Initialize the vector
x
= 3
#prints the new vector
puts vec1
* x
输出:
Vector[3, 6]
例2 :
#Ruby program for* method in Vector
#Include matrix
require "matrix"
#Initialize the vector
vec1
= Vector[1, 2, 3]
#Initialize the vector
x
= 3
#prints the new vector
puts vec1
* x
输出:
Vector[3, 6, 9]