Ruby 矩阵 column_count() 函数

Ruby 矩阵 column_count() 函数

column_count() 是Ruby中一个内置的方法,用于返回矩阵中的列数。

语法 :mat1.column_count()

参数 :该函数不接受任何参数。

返回值 :它返回矩阵中的列数。

例子 1 :

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

输出:

2

例2 :

# Ruby program for column_count() method in Matrix
  
# Include matrix 
require "matrix"
  
# Initialize a matrix 
mat1 =  Matrix[[13, 1, 5], [12, 1, 5], [11, 2, 5]]   
  
# prints the number of columns 
puts  mat1.column_count

输出:

3

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程