Skip to content
Related Articles
Open in App
Not now

Related Articles

Ruby | Matrix empty?() function

Improve Article
Save Article
  • Last Updated : 07 Jan, 2020
Improve Article
Save Article

The empty?() is an inbuilt method in Ruby returns a boolean value. It returns true if the matrix is empty, else it returns false.

Syntax: mat1.empty?()

Parameters: The function does not accepts any parameter.

Return Value: It returns a boolean value.

Example 1:




# Ruby program for empty() method in Matrix
   
# Include matrix 
require "matrix"
   
# Initialize a matrix 
mat1 =  Matrix[[1, 21], [31, 18]]       
   
# prints if empty or not 
puts  mat1.empty?()

Output:

false

Example 2:




# Ruby program for empty() method in Matrix
   
# Include matrix 
require "matrix"
   
# Initialize a matrix 
mat1 =  Matrix[]       
   
# prints if empty or not 
puts  mat1.empty?()

Output:

true
My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!