fig9_3.m

来自「these are the Mtlab functions to plot th」· M 代码 · 共 11 行

M
11
字号

T=dctmtx2(8);
figure; colormap(gray(256));n=1;
for (i=1:8) 
   for (j=1:8) 
      subplot(8,8,n), 
      imagesc(T(i,:)'*T(j,:)); 
      axis off; axis image; 
      n=n+1; 
   end; 
end;

⌨️ 快捷键说明

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