⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mmpx2n.m

📁 关于MATLAB的一些指导和大量的实例 !
💻 M
字号:
function y=mmpx2n(x,Hf)%MMPX2N Pixel to Normalized Coordinate Transformation.% MMPX2N(X) converts the position vector X from% pixel coordinates to normalized coordinates w.r.t.% the computer screen.%% MMPX2N(X,H) converts the position vector X from% pixel coordinates to normalized coordinates w.r.t.% the figure window having handle H.%% X=[left bottom width height] or X=[width height]% D.C. Hanselman, University of Maine, Orono, ME 04469% 4/10/95% Copyright (c) 1996 by Prentice-Hall, Inc. msg='Input is not a pixel position vector.';lx=length(x);sz='Position';if nargin==1,Hf=0;sz='ScreenSize';endif any(x<1)|(lx~=4&lx~=2)	error(msg)endif lx==2,x=[1 1 x(:)'];end  % [width height] input formatu=get(Hf,'Units');set(Hf,'Units','pixels');s=get(Hf,sz);y=(x-1)./([s(3:4) s(3:4)]-1);set(Hf,'Units',u);if any(y>1)	error(msg)endif lx==2,y=y(3:4);end  % [width height] output format

⌨️ 快捷键说明

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