📄 imat.m
字号:
function[x]=imat(N)%IMAT 2-D identify matrix.%% I=IMAT returns the identify matrix%% D=[1 0; % 0 1]%% such that I*X equals X.%% I=IMAT(N) returns a 3-D array of N copies of the identity matrix,% having dimension 2 x 2 x N.% _________________________________________________________________% This is part of JLAB --- type 'help jlab' for more information% (C) 2004 J.M. Lilly --- type 'help jlab_license' for details if nargin==0 N=1;endx=zeros(2,2,N);x(1,1,:)=1;x(2,2,:)=1;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -