consec.m

来自「线性代数实验及MATLAB入门,电子工业出版社出版 陈怀琛 龚杰民合著」· M 代码 · 共 12 行

M
12
字号
function A=consec(n)
% The command A=consec(n) will generate an nxn matrix whose 
% entries are the consecutive integers from 1 to n^2. The 
% first row will be [1, 2, ..., n], the second row will be 
% [n+1, n+2, ..., 2n], etc. For example the command consec(3) 
% will generate the matrix
%
%            1  2  3
%            4  5  6
%            7  8  9
A=reshape([1:n^2],n,n)';

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?