zmatrix.m
来自「线性代数实验及MATLAB入门,电子工业出版社出版 陈怀琛 龚杰民合著」· M 代码 · 共 12 行
M
12 行
function Z=Zmatrix(n)
% The command Z=Zmatrix(n) generates
% a matrix of 0's and 1's whose nonzero
% entries are in the form a letter Z,
% that is, the first and last rows
% and the anti-diagonal consist entirely
% of 1's and the remaining entries of the
% matrix are all 0.
Z=fliplr(eye(n));
Z(1,:)=ones(1,n);
Z(n,:)=ones(1,n);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?