File:Amoeba of p=w-2z-1.svg

Summary

Description Amoeba of polynomial 1
Date (UTC)
Source Own work based on: Amoeba of p=w-2z-1.png by Oleg Alexandrov
Author
Vector:
Category:Vectorizations
SVG development
InfoField
 The source code of this SVG is invalid due to 2 errors.
 This W3C-invalid diagram was created with MATLAB.
Category:Invalid SVG created with MATLAB code#0500Amoeba%20of%20p=w-2z-1.svg
Source code
InfoField

MATLAB code

% a simple code to draw the amoeba of p(z, w) = w-2z-1.

a=0; b=50; h=0.01;

R=h/2:h:b;
X=log(R);
Y=log(abs(2*R-1));
Z=log(abs(2*R+1));

figure(1); clf; hold on; axis equal; axis off;

XX=X;
YY=Y;

% append to (X, Y) the pair (X, Z), traveled in reverse (so that we can use fill)
n=length(Z)
for i=1:n
   XX=[XX X(n-i+1)];
   YY=[YY Z(n-i+1)];
end

blue = [0, 0, 1];
H=fill (XX, YY, blue); set(H, 'EdgeColor', blue);

saveas(gcf, 'amoeba of p=w-2z-1.eps', 'psc2')

Licensing

w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
Category:CC-BY-SA-3.0#Amoeba%20of%20p=w-2z-1.svg

Original upload log

This image is a derivative work of the following images:

Uploaded with derivativeFX Category:Uploaded with derivativeFX

Category:Amoeba (mathematics)
Category:Amoeba (mathematics) Category:CC-BY-SA-3.0 Category:Invalid SVG created with MATLAB code Category:Uploaded with derivativeFX Category:Vectorizations