Datei:Analytic continuation along a curve.png

Originaldatei(408 × 1.006 Pixel, Dateigröße: 32 KB, MIME-Typ: image/png)

Diese Datei und die Informationen unter dem roten Trennstrich werden aus dem zentralen Medienarchiv Wikimedia Commons eingebunden.

Zur Beschreibungsseite auf Commons


Made by myself with MATLAB.

Public domain Ich, der Urheberrechtsinhaber dieses Werkes, veröffentliche es als gemeinfrei. Dies gilt weltweit.
In manchen Staaten könnte dies rechtlich nicht möglich sein. Sofern dies der Fall ist:
Ich gewähre jedem das bedingungslose Recht, dieses Werk für jedweden Zweck zu nutzen, es sei denn, Bedingungen sind gesetzlich erforderlich.

Source code (MATLAB)

% illustrate the analytic continuation along a curve
function main()

   lw=2;  % line width
   fs=20; % font size 
   h=1/100;
   tinyrad = 0.04;
   red = [1, 0, 0];
   
   figure(1); clf; hold on; axis equal; axis off;

   % generate the curve on which the analytic continuation will take place
   XX=[-0.1, 0.3, 0.4 0.28 0.0]; YY=1.4*[0, 1, 1.5 2 2.8];
   Y=YY(1):h:YY(length(YY)); X=spline(YY, XX, Y);
   N = length(X);

   % plot the circles of analytic continuation
   rad=0.8;
   spacing = 1; gap = spacing/h;
   k=1;
   while k <= N
	  plot_circle(X(k), Y(k), rad, lw);
	  k = k+gap;
   end
   plot_circle(X(N), Y(N), rad, lw);

   % plot the curve
   plot(X, Y, 'color', red, 'linewidth', lw);

   % plot the text
   tiny=0.003*fs;
   plot_text(X(1), Y(1), -2*tiny, -3.5*tiny, '\gamma(0)', fs, tinyrad, red);
   t=0.5; k=floor(N*t);
   plot_text(X(k), Y(k), tiny, tiny, '\gamma(\it{t})', fs, tinyrad, red);
   plot_text(X(N), Y(N), -4*tiny, 4.5*tiny, '\gamma(1)', fs, tinyrad, red);


   % plot arrows showing the direction along the curve
   thickness = lw;
   arrow_size = 0.27;
   sharpness=25;
   arrow_type=1;
   t= 0.2; s=0.1; k = floor(N*t); l = floor(N*(t+s));
   arrow([X(k), Y(k)], [X(l), Y(l)], thickness, arrow_size, sharpness, arrow_type, red)
   t= 0.8; s=0.1; k = floor(N*t); l = floor(N*(t+s));
   arrow([X(k), Y(k)], [X(l), Y(l)], thickness, arrow_size, sharpness, arrow_type, red)
   
   % plot a phony box around the graph to avoid a bug in matlab
   % with truncating around the edges when exporting to eps
   white=0.99*[1 1 1]; factor=1.1;
   plot(X(1)-factor*rad, Y(1)-factor*rad, '*', 'color', white);
   plot(X(N)+factor*rad, Y(N)+factor*rad, '*', 'color', white);
   saveas(gcf, 'analytic_continuation_along_a_curve.eps', 'psc2');
   
function plot_circle(x, y, r, lw)

   N=100;
   Theta=0:(1/N):2.1*pi;
   X=r*cos(Theta);
   Y=r*sin(Theta);

   plot(x+X, y+Y, 'linewidth', lw);

function plot_text(x, y, shiftx, shifty, str, fs, tinyrad, color)
   text(x+shiftx, y+shifty, str, 'fontsize', fs);
   ball(x, y, tinyrad, color);
      
function ball(x, y, r, color)
   Theta=0:0.1:2*pi;
   X=r*cos(Theta)+x;
   Y=r*sin(Theta)+y;
   H=fill(X, Y, color);
   set(H, 'EdgeColor', 'none');

function arrow(start, stop, thickness, arrow_size, sharpness, arrow_type, color)
   
% Function arguments:
% start, stop:  start and end coordinates of arrow, vectors of size 2
% thickness:    thickness of arrow stick
% arrow_size:   the size of the two sides of the angle in this picture ->
% sharpness:    angle between the arrow stick and arrow side, in degrees
% arrow_type:   1 for filled arrow, otherwise the arrow will be just two segments
% color:        arrow color, a vector of length three with values in [0, 1]
   
% convert to complex numbers
   i=sqrt(-1);
   start=start(1)+i*start(2); stop=stop(1)+i*stop(2);
   rotate_angle=exp(i*pi*sharpness/180);

% points making up the arrow tip (besides the "stop" point)
   point1 = stop - (arrow_size*rotate_angle)*(stop-start)/abs(stop-start);
   point2 = stop - (arrow_size/rotate_angle)*(stop-start)/abs(stop-start);

   if arrow_type==1 % filled arrow

      % plot the stick, but not till the end, looks bad
      t=0.5*arrow_size*cos(pi*sharpness/180)/abs(stop-start); stop1=t*start+(1-t)*stop;
      plot(real([start, stop1]), imag([start, stop1]), 'LineWidth', thickness, 'Color', color);

      % fill the arrow
      H=fill(real([stop, point1, point2]), imag([stop, point1, point2]), color);
      set(H, 'EdgeColor', 'none')
      
   else % two-segment arrow
      plot(real([start, stop]), imag([start, stop]),   'LineWidth', thickness, 'Color', color); 
      plot(real([stop, point1]), imag([stop, point1]), 'LineWidth', thickness, 'Color', color);
      plot(real([stop, point2]), imag([stop, point2]), 'LineWidth', thickness, 'Color', color);
   end
Dieses Bild des Typs Math sollte als Vektorgrafik im SVG-Format neu erstellt werden. Vektorformate haben zahlreiche Vorteile; weitere Information unter Commons:Media for cleanup. Wenn dir eine SVG-Version dieses Bildes vorliegt, so lade diese bitte hoch. Nach dem Hochladen der Datei ist diese Vorlage auf der aktuellen Bildbeschreibungsseite durch die Vorlage {{Vector version available}}, oder kürzer {{Vva}}, zu ersetzen. Es ist empfohlen die neue SVG-Datei „Analytic continuation along a curve.svg“ zu nennen – dann benötigt die Vorlage vector version available (bzw. vva) keinen Parameter.

Kurzbeschreibungen

Ergänze eine einzeilige Erklärung, was diese Datei darstellt.

In dieser Datei abgebildete Objekte

Motiv

image/png

176da5111ece3e393258e3a822df3f97a7cafe8a

32.906 Byte

1.006 Pixel

408 Pixel

Dateiversionen

Klicke auf einen Zeitpunkt, um diese Version zu laden.

Version vomVorschaubildMaßeBenutzerKommentar
aktuell05:26, 8. Apr. 2007Vorschaubild der Version vom 05:26, 8. Apr. 2007408 × 1.006 (32 KB)Oleg AlexandrovMade by myself with MATLAB. {{PD-self}}
05:24, 8. Apr. 2007Vorschaubild der Version vom 05:24, 8. Apr. 2007408 × 1.006 (32 KB)Oleg AlexandrovMade by myself with MATLAB. {{PD-self}}
05:20, 8. Apr. 2007Vorschaubild der Version vom 05:20, 8. Apr. 2007408 × 1.006 (32 KB)Oleg AlexandrovMade by myself with MATLAB. {{PD-self}}
05:17, 8. Apr. 2007Vorschaubild der Version vom 05:17, 8. Apr. 2007408 × 1.006 (33 KB)Oleg AlexandrovMade by myself with MATLAB. {{PD-self}}
05:15, 8. Apr. 2007Vorschaubild der Version vom 05:15, 8. Apr. 2007408 × 1.006 (33 KB)Oleg AlexandrovMade by myself with MATLAB. {{PD-self}}

Die folgenden 2 Seiten verwenden diese Datei:

Globale Dateiverwendung

Die nachfolgenden anderen Wikis verwenden diese Datei: