From 5f09b7ef22fbc282643f4b7ffb21cc2613c56bed Mon Sep 17 00:00:00 2001 From: Markus Winter Date: Tue, 26 May 2020 15:44:47 +0200 Subject: [PATCH] Update documentation in ComplexModule Replace the now deprecated unsafeLengthSquared reference with the newer lengthSquared in the README.md of the Complex module. --- Sources/ComplexModule/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/ComplexModule/README.md b/Sources/ComplexModule/README.md index a8b33700..dd758d3f 100644 --- a/Sources/ComplexModule/README.md +++ b/Sources/ComplexModule/README.md @@ -60,7 +60,7 @@ Because of this, the ∞-norm is the obvious alternative; it gives the nicest AP - The ∞-norm is heavily used in other computational libraries; for example, it is used by the `izamax` and `icamax` functions in BLAS. The 2-norm still needs to be available, of course, because sometimes you need it. -This functionality is accessed via the `.length` and `.unsafeLengthSquared` properties. +This functionality is accessed via the `.length` and `.lengthSquared` properties. ### Accuracy of division and multiplication This library attempts to provide robust division and multiplication operations, with small relative error in a complex norm. It is a non-goal to deliver small componentwise errors.