matlab随手记

矩阵展开

>> B=[1;3]


B =


     1
     3

>> C=kron(B,[1,1,1])


C =


     1     1     1
     3     3     3


使用imshow绘制图片到到指定坐标

% 产生新的图像显示框
hAxe=axes('Parent',gcf,... % 设置新的axe, 将'parent' 属性设置为当前窗口gcf
    'Units','pixels',...  %设置单位为pixels
    'Position',[30 80 605 705]);  % 指定axe的位置,格式为[left bottom width height], left和bottom设定了axe的左下 %角坐标,width和height设定了窗口的宽度和高度

%选定hAxe为当前axe
axes(hAxe);

%显示图像
imshow(...)

你可能感兴趣的:(Computer,vision,and,Machine,learning)