Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

arctanh(z)

0 views
Skip to first unread message

Tleko

unread,
Sep 8, 1998, 3:00:00 AM9/8/98
to
arctanh(z) = .5*ln((1+z)/(1-z)), z=x+i*y

Real = ln(((1-x^2-y^2)^2)/((1-x)^2+y^2))

Imag.= .5*atan(2*y/(1-x^2-y^2))

(using MATLAB):

Realebene

[x,y]=meshdom(0:.05:1,0:.05:1);
colormap([1 1 1]);
R=log(((1-x.^2-y.^2).^2+4*y.^2)./((1-x).^2+y.^2));
I=.5*atan(2*y./(1-x.^2-y.^2));
z=sqrt(R.^2+I.^2).*cos(atan(I./R));
surf(x,y,z)

Imaginaerebene

[x,y]=meshdom(0:.05:1,0:.05:1);
colormap([1 1 1]);
R=log(((1-x.^2-y.^2).^2+4*y.^2)./((1-x).^2+y.^2));
I=.5*atan(2*y./(1-x.^2-y.^2));
z=sqrt(R.^2+I.^2).*sin(atan(I./R));
surf(x,y,z)

tl...@aol.com

Tleko

unread,
Sep 9, 1998, 3:00:00 AM9/9/98
to
Im Artikel <199809081228...@ladder03.news.aol.com>
tl...@aol.com (Tleko)

Da sind einige Fehler in meinem Artikel unterlaufen. Ich sollte schreiben:

arctanh(z) = .5*ln((1+z)/(1-z)), z=x+i*y

Real = .5*ln(sqrt(((1-x^2-y^2)^2+(2*y)^2)/(((1-x)^2+y^2))^2))

Imag.= .5*atan(2*y/(1-x^2-y^2))

(using MATLAB):

Realebene

[x,y]=meshdom(0:.05:1,0:.05:1);
colormap([1 1 1]);

R=.5*log(sqrt(((1-x.^2-y.^2).^2+(2*y).^2./(((1-x).^2+y.^2)).^2));
I=.5*atan((2*y)./(1-x.^2-y.^2));
z=sqrt(R.^2+I.^2).*cos(atan(I./R));
surf(x,y,z)

Imaginaerebene

[x,y]=meshdom(0:.05:1,0:.05:1);
colormap([1 1 1]);

R=.5*log(sqrt(((1-x.^2-y.^2).^2+(2*y).^2./(((1-x).^2+y.^2)).^2));
I=.5*atan((2*y)./(1-x.^2-y.^2));
z=sqrt(R.^2+I.^2).*sin(atan(I./R));
surf(x,y,z)

tl...@aol.com


0 new messages