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