?? conmapinv.m
字號:
function xyz = conmapinv(c,xyzmap)% CONMAPINV : Inverse conformal map for geometric partitioning.%% [xyz,xy] = conmapinv(c,xyzmap):% Input is points xyzmap on a unit sphere in d-space% (one point per row of matrix xyz),% and a point c in d-space represented as a row vector.%% We compute the inverse of the conformal mapping in conmap.m.%% The output is the new points on the sphere.%% See GEOPART.%% John Gilbert and Shanghua Teng, 1992-1993.% Copyright (c) 1990-1996 by Xerox Corporation. All rights reserved.% HELP COPYRIGHT for complete copyright and licensing notice.% Compute the reflection and stretch.[Q,r] = reflector(c);alpha = sqrt((1+r)/(1-r));% Unstretch.xymap = stereodown(xyzmap);xyref = alpha * xymap;xyzref = stereoup(xyref);% Unreflect.xyz = xyzref * Q';
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -