Horje
Ruby | Matrix component() function

The component() is an inbuilt method in Ruby returns the element present at the intersection of i-th row and j-th column.

Syntax: mat1.component(i, j)

Parameters: The function accepts two parameters i and j which signifies the row_number and column_number.

Return Value: It returns the element at mat[i][j].

Example 1:




# Ruby program for component() method in Matrix
  
# Include matrix 
require "matrix"
  
# Initialize a matrix 
mat1 =  Matrix[[1, 21], [31, 18]]       
  
# prints the element at 1, 1
puts  mat1.component(1, 1)

Output:

18

Example 2:




# Ruby program for component() method in Matrix
   
# Include matrix 
require "matrix"
   
# Initialize a matrix 
mat1 =  Matrix[[13, 1, 5], [12, 1, 5], [11, 2, 5]]    
   
# prints the element at 0, 1
puts  mat1.component(0, 1)

Output:

1



Reffered: https://www.geeksforgeeks.org


Ruby

Related
Ruby | Matrix column_vectors() function Ruby | Matrix column_vectors() function
Ruby | Matrix column_size() function Ruby | Matrix column_size() function
Ruby | Matrix column() function Ruby | Matrix column() function
Ruby | Matrix column_count() function Ruby | Matrix column_count() function
Ruby | Matrix collect() function Ruby | Matrix collect() function

Type:
Geek
Category:
Coding
Sub Category:
Tutorial
Uploaded by:
Admin
Views:
11