File:Conformal map.svg
From Wikimedia Commons, the free media repository
Jump to navigation
Jump to search
Size of this PNG preview of this SVG file: 342 × 599 pixels. Other resolutions: 137 × 240 pixels | 274 × 480 pixels | 438 × 768 pixels | 584 × 1,024 pixels | 1,169 × 2,048 pixels | 535 × 937 pixels.
Original file (SVG file, nominally 535 × 937 pixels, file size: 34 KB)
File information
Structured data
Captions
Summary
[edit]DescriptionConformal map.svg | Illustration of a conformal map. |
Date | |
Source | self-made with MATLAB, tweaked in Inkscape. |
Author | Oleg Alexandrov |
SVG development InfoField | This vector image was created with Inkscape. This file uses translateable embedded text. |
Licensing
[edit]Public domainPublic domainfalsefalse |
I, the copyright holder of this work, release this work into the public domain. This applies worldwide. In some countries this may not be legally possible; if so: I grant anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law. |
% Compute the image of a rectangular grid under a a conformal map.
function main()
N = 15; % num of grid points
epsilon = 0.1; % displacement for each small diffeomorphism
num_comp = 10; % number of times the diffeomorphism is composed with itself
S = linspace(-1, 1, N);
[X, Y] = meshgrid(S);
% graphing settings
lw = 1.0;
% KSmrq's colors
red = [0.867 0.06 0.14];
blue = [0, 129, 205]/256;
green = [0, 200, 70]/256;
yellow = [254, 194, 0]/256;
white = 0.99*[1, 1, 1];
mycolor = blue;
% start plotting
figno=1; figure(figno); clf;
shiftx = 0; shifty = 0; scale = 1;
do_plot(X, Y, lw, figno, mycolor, shiftx, shifty, scale)
I=sqrt(-1);
Z = X+I*Y;
% tweak these numbers for a pretty map
z0 = 1+ 2*I;
z1 = 0.1+ 0.2*I;
z2 = 0.2+ 0.3*I;
a = 0.01;
b = 0.02;
shiftx = 0.1; shifty = 1.2; scale = 1.4;
F = (Z+z0).^2 +a*(Z+z1).^3 +b*(Z+z2).^4;
F = (1+2*I)*F;
XF = real(F); YF=imag(F);
do_plot(XF, YF, lw, figno, mycolor, shiftx, shifty, scale)
axis ([-1 1.3 -2 2]); axis off;
saveas(gcf, 'Conformal_map.eps', 'psc2');
function do_plot(X, Y, lw, figno, mycolor, shiftx, shifty, scale)
figure(figno); hold on;
[M, N] = size(X);
X = X - min(min(X));
Y = Y - min(min(Y));
a = max(max(max(abs(X))), max(max(abs(Y))));
X = X/a; Y = Y/a;
X = scale*(X-shiftx);
Y = scale*(Y-shifty);
for i=1:N
plot(X(:, i), Y(:, i), 'linewidth', lw, 'color', mycolor);
plot(X(i, :), Y(i, :), 'linewidth', lw, 'color', mycolor);
end
% axis([-1-small, 1+small, -1-small, 1+small]);
axis equal; axis off;
File history
Click on a date/time to view the file as it appeared at that time.
Date/Time | Thumbnail | Dimensions | User | Comment | |
---|---|---|---|---|---|
current | 21:51, 27 January 2008 | 535 × 937 (34 KB) | Oleg Alexandrov (talk | contribs) | Make arrow and text smaller | |
03:36, 23 January 2008 | 535 × 937 (34 KB) | Oleg Alexandrov (talk | contribs) | {{Information |Description=Illustration of a conformal map. |Source=self-made with MATLAB, tweaked in Inkscape. |~~~~~ |Author= Oleg Alexandrov |Permission= |other_versions= }} {{PD-self}} ==Source code ([[ |
You cannot overwrite this file.
File usage on Commons
There are no pages that use this file.
File usage on other wikis
The following other wikis use this file:
- Usage on ar.wikipedia.org
- Usage on ba.wikipedia.org
- Usage on ca.wikipedia.org
- Usage on cbk-zam.wikipedia.org
- Usage on cs.wikipedia.org
- Usage on de.wikipedia.org
- Usage on de.wikiversity.org
- Holomorphie
- Kurs:Riemannsche Flächen (Osnabrück 2022)/Vorlesung 1
- Kurs:Riemannsche Flächen (Osnabrück 2022)/Vorlesung 1/kontrolle
- Satz über die Umkehrabbildung/Implizite Abbildung/C/Zusammenfassung/Textabschnitt
- Kurs:Funktionentheorie (Osnabrück 2023-2024)/Vorlesung 4
- Kurs:Funktionentheorie (Osnabrück 2023-2024)/Vorlesung 4/kontrolle
- Usage on el.wikipedia.org
- Usage on en.wikipedia.org
- Usage on es.wikipedia.org
- Usage on fa.wikipedia.org
- Usage on fi.wikipedia.org
- Usage on fr.wikipedia.org
- Usage on gl.wikipedia.org
- Usage on he.wikipedia.org
- Usage on hi.wikipedia.org
- Usage on hu.wikipedia.org
- Usage on hy.wikipedia.org
- Usage on id.wikipedia.org
- Usage on it.wikipedia.org
View more global usage of this file.