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