cyclic.m
来自「线性代数实验及MATLAB入门,电子工业出版社出版 陈怀琛 龚杰民合著」· M 代码 · 共 8 行
M
8 行
function C=cyclic(n)
% The command cyclic(n) generates an nxn matrix
% with 1's on the diagonal just above the main
% diagonal and a 1 in the lower left hand corner.
% The remaining entries of the matrix are all 0.
C=diag(ones(n-1,1),1);
C(n,1)=1;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?