Open In App

Ruby | Vector + method

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

The + is an inbuilt method in Ruby returns the addition of two vectors

Syntax: vec1 + vec2

Parameters: The function does not accepts any parameter.

Return Value: It returns the addition two vectors.

Example 1:




#Ruby program for + method in Vector
  
#Include matrix
require "matrix"
  
#Initialize the vectors
    vec1
    = Vector[1, 2] vec2 = Vector[1, 4]
  
#prints the new vector
                          puts vec1
                          + vec2


Output:

Vector[2, 6]

Example 2:




#Ruby program for + method in Vector
  
#Include matrix
require "matrix"
  
#Initialize the vectors
    vec1
    = [ 1, 4, 5 ] vec2 = [ 1, 4, 7 ]
  
#prints the new vector
                         puts vec1
                         + vec2


Output:

Vector[2, 8, 12]

Last Updated : 07 Jan, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads