imat.m
来自「JLAB is a set of Matlab functions I have」· M 代码 · 共 25 行
M
25 行
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 + =
减小字号Ctrl + -
显示快捷键?