Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Ruby | Matrix empty?() function

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like 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
Last Updated : 07 Jan, 2020
Like Article
Save Article
Similar Reads