Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
1.1
-
None
-
None
-
None
Description
All but two of the functions in ComplexUtils operate on a single Complex instance. I think it would make coding easier (esp. with an IDE) if the ComplexUtils functions were merged into Complex. For example, using the cos function changes from:
Complex cosA = ComplexUtils.cos(a);
to
Complex cosA = a.cos();