p3_25.m
来自「Programs for the book Advanced Engineeri」· M 代码 · 共 12 行
M
12 行
% P3_25.M Determine rank of A and A'
%
%
A=input('Input the matrix A ');
A % Display A
At=A' % and A transpose
rankA=rank(A) % Compute ranks
rankAt=rank(At)
%
% Are the ranks always the same?- try rand command to generate
% arbitrary input matrices
%
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?