tms2xyz
PURPOSE 
[xp,yp,zp]=tms2xyz(x,y,z,l)
SYNOPSIS 
function [xp,yp,zp]=tms2xyz(x,y,z,l)
DESCRIPTION 
CROSS-REFERENCE INFORMATION 
This function calls:
This function is called by:
SOURCE CODE 
0001 function [xp,yp,zp]=tms2xyz(x,y,z,l)
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 t=pi/2-l;
0014
0015 sint=sin(t); cost=cos(t);
0016 sinl=sin(l); cosl= cos(l);
0017
0018 xp=+cost.*x-sint.*z;
0019 yp=y;
0020 zp=+sint.*x+cost.*z;
0021
0022 return
Generated on Sun 14-Jun-2015 17:12:45 by m2html © 2005