example75_figure.m

来自「该系统使用极其简便」· M 代码 · 共 11 行

M
11
字号
%%%example75_figure
%%%%imread  the image samples 
figure('name','实验图像','numbertitle','off');
img1=imread('example75_img1.bmp');
img2=imread('example75_img2.bmp');
subplot(1,2,1),imshow(rgb2gray(img1));
subplot(1,2,2),imshow(rgb2gray(img2));
 
% subplot(1,2,2),imshow(mat2gray(reshape((W(:,1)*c2(1)+b),32,32)));

⌨️ 快捷键说明

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