📄 lmatrix.m
字号:
function L=Lmatrix(n)
% The function Lmatrix(n) generates a matrix
% of 0's and 1's. The nonzero entries are in the
% form of a letter L, that is the first column
% and the last row consist entirely of 1's and
% the remaining entries are 0.
L=zeros(n);
L(:,1)=ones(n,1);
L(n,:)=ones(1,n);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -