Ruby | Vector covector() function
The covector() is an inbuilt method in Ruby returns a single-row matrix created using vector
Syntax: vec1.covector()
Parameters: The function accepts no parameter
Return Value: It returns a single-row matrix created using vector
Example 1:
#Ruby program for covector() method in Vector #Include matrix require "matrix" #Initialize the vector vec1 = Vector[1, 2] #Prints single - row matrix puts vec1.covector() |
chevron_right
filter_none
Output:
Matrix[[1, 2]]
Example 2:
#Ruby program for covector() method in Vector #Include matrix require "matrix" #Initialize the vector vec1 = Vector[1, 2, 3] #Prints single - row matrix puts vec1.covector() |
chevron_right
filter_none
Output:
Matrix[[1, 2, 3]]
Recommended Posts:
- Ruby | Vector r() function
- Ruby | Vector zero?() function
- Ruby | Vector eql?() function
- Ruby | Vector zero() function
- Ruby | Vector to_a() function
- Ruby | Vector size() function
- Ruby | Vector elements() function
- Ruby | Vector to_matrix() function
- Ruby | Vector angle_with() function
- Ruby | Vector hash() function
- Ruby | Vector norm() function
- Ruby | Vector normalize() function
- Ruby | Vector inner_product() function
- Ruby | Vector component() function
- Ruby | Vector independent? function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.