+ cinv in interface

This commit is contained in:
pierre 1999-12-20 22:24:48 +00:00
parent a648f31c6a
commit f3557f20ed

View File

@ -155,6 +155,9 @@ Unit UComplex;
{ complex functions }
function cong (z : complex) : complex; { conjuge }
{ inverse function 1/z }
function cinv (z : complex) : complex;
{ complex functions with real return values }
function cmod (z : complex) : real; { module }
function carg (z : complex) : real; { argument : a / z = p.e^ia }
@ -612,7 +615,10 @@ Unit UComplex;
end.
{
$Log$
Revision 1.1 1998-06-15 15:45:42 pierre
Revision 1.2 1999-12-20 22:24:48 pierre
+ cinv in interface
Revision 1.1 1998/06/15 15:45:42 pierre
+ complex.pp replaced by ucomplex.pp
complex operations working