-
Notifications
You must be signed in to change notification settings - Fork 1
/
mobius.m
369 lines (321 loc) · 9.43 KB
/
mobius.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
classdef mobius < conformalmap
% MOBIUS transformation class.
% MOBIUS(Z,W) creates the Mobius transformation that maps the
% 3-vector Z to W. One infinity is allowed in each of Z and W.
%
% MOBIUS(a,b,c,d) creates the transformation
%
% a*z + b
% ---------
% c*z + d
%
% MOBIUS([a b; c d]) is also allowed. In either of these cases, a,b,c,d
% should be finite complex numbers.
% Copyright 2015 the ConfMapTk project developers. See the COPYRIGHT
% file at the top-level directory of this distribution and at
% https://github.com/ehkropf/ConfMapTk.
%
% This file is part of ConfMapTk. It is subject to the license terms in
% the LICENSE file found in the top-level directory of this distribution
% and at https://github.com/ehkropf/ConfMapTk. No part of ConfMapTk,
% including this file, may be copied, modified, propagated, or distributed
% except according to the terms contained in the LICENSE file.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LICENSE
% file.
properties
theMatrix
end
methods
function M = mobius(varargin)
domain = [];
range = [];
matrix = [];
switch nargin
case 1
A = varargin{1};
if isa(A, 'double') && isequal(size(A), [2, 2])
matrix = A;
else
error('CMT:InvalidArgument', ...
'Single argument should be a 2-by-2 matrix.')
end
case 2
[z, w] = deal(varargin{:});
if isa(z, 'circle') && isa(w, 'circle')
z = point(z, pi*[0.5, 1, 1.5]);
w = point(w, pi*[0.5, 1, 1.5]);
end
if (isa(z, 'double') && length(z) == 3) && (isa(w, 'double') && ...
length(w) == 3)
A1 = mobius.standardmap(z);
circ = circle(z);
if ~isinf(circ)
domain = disk(circ);
end
A2 = mobius.standardmap(w);
circ = circle(w);
if ~isinf(circ)
range = disk(circle(w));
end
matrix = A2\A1;
else
error('CMT:InvalidArgument', ...
'Invalid arguments; see help for mobius.')
end
case 4
matrix = reshape(cat(1, varargin{:}), [2, 2]).';
end
if ~isempty(matrix) && rcond(matrix) < eps
warning('Mobius map appears to be singular.')
end
if ~nargin
supargs = {};
else
supargs = {domain, range};
end
M = M@conformalmap(supargs{:});
M.theMatrix = matrix;
end % ctor
function out = char(map)
% CHAR Pretty-print a Mobius map.
% Copyright (c) 1998-2006 by Toby Driscoll.
% Numerator
num = '';
a = map.theMatrix(1,1);
if a~=0
if a~=1
if isreal(a)
num = [num num2str(a,4) '*'];
elseif isreal(1i*a)
num = [num num2str(imag(a),4) 'i*'];
else
num = [num '(' num2str(a,4) ')*'];
end
end
num = [num 'z'];
end
a = map.theMatrix(1,2);
if a~=0
if ~isempty(num)
s = sign(real(a));
if s==0, s = sign(imag(a)); end
if s > 0
num = [num ' + '];
else
num = [num ' - '];
a = -a;
end
end
if isreal(a)
num = [num num2str(a,4)];
elseif isreal(1i*a)
num = [num num2str(imag(a),4) 'i'];
else
num = [num '(' num2str(a,4) ')'];
end
end
% Denominator
den = '';
a = map.theMatrix(2,1);
if a~=0
if a~=1
if isreal(a)
den = [den num2str(a,4) '*'];
elseif isreal(1i*a)
den = [den num2str(imag(a),4) 'i*'];
else
den = [den '(' num2str(a,4) ')*'];
end
end
den = [den 'z'];
end
a = map.theMatrix(2,2);
if a~=0
if ~isempty(den)
s = sign(real(a));
if s==0, s = sign(imag(a)); end
if s > 0
den = [den ' + '];
else
den = [den ' - '];
a = -a;
end
end
if isreal(a)
den = [den num2str(a,4)];
elseif isreal(1i*a)
den = [den num2str(imag(a),4) 'i'];
else
den = [den '(' num2str(a,4) ')'];
end
end
L = [length(num),length(den)];
D = (max(L)-L)/2;
num = [blanks(floor(D(1))) num blanks(ceil(D(1)))];
den = [blanks(floor(D(2))) den blanks(ceil(D(2)))];
fline = repmat('-',1,max(L));
out = sprintf('\n %s\n %s\n %s\n',num,fline,den);
end % char
function disp(f)
if isempty(f.theMatrix)
fprintf('\n\tempty transformation matrix\n\n')
else
disp(char(f))
end
end
function w = feval(M, z)
warning('mobius.feval() is depricated, use mobius.apply() instead.')
w = applyMap(M, z);
end
function Minv = inv(M)
% Inverse transformation.
% Original code turned off builtin singular matrix warning and supplied
% a repeat of warning supplied in constructor. Skipping here.
Minv = mobius(inv(M.theMatrix));
end
function A = matrix(M)
A = M.theMatrix;
end
function M = mrdivide(M1, M2)
% Divide Mobius map by a scalar, or reciprocate it.
% 1/M, for Mobius map M, swaps the numerator and denominator of M.
% M/c, for scalar c, multiplies the denominator of M by c.
% Copyright (c) 1998 by Toby Driscoll.
% $Id: mrdivide.m,v 1.1 1998/07/01 20:14:22 tad Exp $
if isequal(M1, 1)
% Exchange numerator and denominator
A = M2.theMatrix;
M = mobius(A([2, 1],:));
elseif isa(M2, 'double') && length(M2) == 1
A = M1.theMatrix;
M = mobius([1, 0; 0, M2]*A);
else
error('Division not defined for these operands.')
end
end
function M = mtimes(M1, M2)
% Multiply Moebius transformation by a scalar, compose it with another
% map, or apply it if left multiplication.
if isa(M1, 'mobius')
switch class(M2)
case 'mobius'
M = mobius(M1.theMatrix*M2.theMatrix);
M.theDomain = domain(M2);
M.theRange = range(M1);
return
case 'conformalmap'
M = mtimes@conformalmap(M2, M1);
return
end
if isa(M2, 'closedcurve') || isa(M2, 'region')
M = apply(M1, M2);
return
end
else
% swap
[M1, M2] = deal(M2, M1);
end
% Try scalar multiplication.
if isnumeric(M2) && length(M2) == 1
A = M1.theMatrix;
A(1,:) = A(1,:)*M2;
M = mobius(A);
else
error('CMT:NotDefined', ['Combining %s with a Mobius ' ...
'transformation in this way is not defined.'], class(M2))
end
end
function z = pole(M)
% Return the pole of the Moebius map.
A = M.theMatrix;
z = double(homog(-A(2,2)/A(2,1)));
end
function M = pretty(M, c)
% Normalize a Moebius transformation for 'nicer' numbers.
% PRETTY(M), where M is a moebius map, divides the coefficients of M
% by the constant term in the demoninator, or (if that is zero) the
% coefficient of the linear term in the denominator. Then any real or
% imaginary parts that are close to machine precision are rounded to
% exactly zero.
%
% PRETTY(M,C) instead normalizes all coefficients by C, then cleans up
% small numbers.
% Copyright (c) 2004, 2006 by Toby Driscoll.
% $Id$
A = M.theMatrix;
% Normalization
if nargin==1
d = A(2,2);
if d==0
d = A(2,1);
end
A = A/d;
else
A = c*A;
end
% Rounding
index = abs(imag(A)) < 100*eps;
A(index) = real(A(index));
index = abs(real(A)) < 100*eps;
A(index) = 1i*imag(A(index));
M = mobius(A);
end % pretty
function M = uminus(M)
M = -1*M;
end
function z = zero(M)
% Return the zero of the Mobius map.
A = M.theMatrix;
z = double(homog(-A(1,2)/A(1,1)));
end
end
methods(Access=protected)
function w = applyMap(M, z)
% Evaluate Mobius transformation.
% Copyright (c) 2006 by Toby Driscoll.
switch(class(z))
case {'circle', 'zline'}
zp = pole(M);
if dist(z, zp) < 10*eps(zp)
% Result appears to be a line.
zp = applyMap(M, point(z, [0.5, 1.5]*pi));
w = zline(zp);
else
% Find new circle using three points.
zp = applyMap(M, point(z, [0.5, 1, 1.5]*pi));
w = circle(zp);
end
case 'double'
w = NaN(size(z));
% Convert inputs to homogeneous coordinates, and reshape
z = homog(z);
Z = [numer(z(:)).'; denom(z(:)).'];
% Apply map
W = M.theMatrix*Z;
% Convert to complex without DBZ warnings
w(:) = double(homog(W(1,:), W(2,:)));
otherwise
error('Mobius maps can be applied to floats or circles/zlines only')
end
end
end
methods(Static)
function A = standardmap(z)
% Return mobius matrix for map from z(1:3) to [0, 1, Inf].
if isinf(z(1))
A = [0, z(2) - z(3); 1, -z(3)];
elseif isinf(z(2))
A = [1, -z(1); 1, -z(3)];
elseif isinf(z(3))
A = [1, -z(1); 0, z(2) - z(1)];
else
rms = z(2) - z(3);
rmq = z(2) - z(1);
A = [rms, -z(1)*rms; rmq, -z(3)*rmq];
end
end % standardmap
end
end