Ruby Vector *方法

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]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程