📄 show_list.m
字号:
function show_list(list);
%show the image of all points in the list
[x,y] = size(list);
imag = zeros(200,200);
x
for i=1:x
imag(list(i,1),list(i,2)) = 1;
end;
%figure;
colormap(gray);imagesc(imag);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -