在 MATLAB 中获取矩阵的列数
我们将研究在 MATLAB 中获取矩阵列数的不同方法。使用 MATLAB 矩阵,我们将使用不同的示例代码和相关输出来清除你的概念并为你提供完整的见解。
MATLAB 允许用户使用 matrix-algebra
方法操作任何矩阵,以轻松计算困难和冗长的公式。
在 MATLAB 中,矩阵是一个矩形数组,其中包含我们根据需要输入和组织的任何数据。
我们数据的垂直条目填充矩阵的列,而矩阵中的水平数据条目称为行。我们将在 MATLAB 的帮助下查看不同的函数并计算矩阵的列数。
在 MATLAB 中使用 size()
函数获取矩阵的列数
size()
函数支持两个参数。第一个参数是我们的矩阵的名称(带有一些数据),我们想要获取其中的列数。
第二个参数可以是数字一或数字二。数字 1
返回矩阵的行数,而数字 2
返回列数。
根据我们的要求,我们将使用数字 2
来获取 MATLAB 中的矩阵列数。让我们通过查看以下示例来理解这个概念:
%Suppose our matrix is following:
matrix = [12 22 32; 42 52 62; 72 82 92];
size(matrix,2)
输出:
ans = 3
请注意,在上面的示例中,由于我们使用了数字 2
,因此输出返回了名为 matrix
的矩阵的列数。
在 MATLAB 中使用 length()
函数获取矩阵的列数
MATLAB 中的函数 length()
用于返回非零非空
矩阵的值。
要传递的参数是包含我们数据的矩阵的名称。函数 length(name-of-our-matrix)
返回最大的数字,无论是行还是列。
%Suppose our matrix is following:
matrix = [12 22 32; 42 52 62; 72 82 92];
length(matrix)
输出:
ans = 3
请注意,我们对 length()
函数得到的答案与对 size()
函数的答案相同。原因是我们的矩阵是正方形的。
这就是我们得到相同答案的原因:矩阵的行数等于矩阵的列数。让我们以不同的方式使用 size 函数。
%Suppose our matrix is following:
matrix = [12 22 32; 42 52 62; 72 82 92];
[row,column] = size(matrix); %get-row-and-column-values-of-data-matrix
fprintf('\nNumber of rows of our matrix is: %d' ,row); %print-number-of-row
fprintf('\nNumber of columns of our matrix is: %d ' ,column); %print-number-of-column
输出:
Number of rows of our matrix is: 3
Number of columns of our matrix is: 3
请注意,在此示例中我们没有传递任何数字参数。使用 [row,column] = size(matrix);
通过 size()
函数直接从这段代码中获取我们矩阵的列数和行数。
Mehak is an electrical engineer, a technical content writer, a team collaborator and a digital marketing enthusiast. She loves sketching and playing table tennis. Nature is what attracts her the most.
LinkedIn