home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 10
/
10.iso
/
l
/
l460
/
2.ddi
/
ELFUN.DI$
/
ATANH.M
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1993-03-07
|
209 b
|
8 lines
function y = atanh(z)
%ATANH Inverse hyperbolic tangent.
% ATANH(X) is the inverse hyperbolic tangent of the elements of X.
% Copyright (c) 1984-93 by The MathWorks, Inc.
y = log((1 + z)./(1 - z))/2;