#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
Ruby
输出:
Vector[0, 1]
Ruby
例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