Return-Path: Delivered-To: apmail-commons-issues-archive@locus.apache.org Received: (qmail 38082 invoked from network); 6 Nov 2007 18:19:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 6 Nov 2007 18:19:14 -0000 Received: (qmail 68122 invoked by uid 500); 6 Nov 2007 18:19:01 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 68062 invoked by uid 500); 6 Nov 2007 18:19:01 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 68052 invoked by uid 99); 6 Nov 2007 18:19:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Nov 2007 10:19:01 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Nov 2007 18:19:12 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 64A2771423E for ; Tue, 6 Nov 2007 10:18:52 -0800 (PST) Message-ID: <4100064.1194373132409.JavaMail.jira@brutus> Date: Tue, 6 Nov 2007 10:18:52 -0800 (PST) From: "Niall Pemberton (JIRA)" To: issues@commons.apache.org Subject: [jira] Updated: (MATH-171) Merge (most of) ComplexUtils into Complex In-Reply-To: <14019256.1194373132179.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/MATH-171?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Niall Pemberton updated MATH-171: --------------------------------- Attachment: commons-math-complex-func.patch > Merge (most of) ComplexUtils into Complex > ----------------------------------------- > > Key: MATH-171 > URL: https://issues.apache.org/jira/browse/MATH-171 > Project: Commons Math > Issue Type: Improvement > Affects Versions: 1.1 > Reporter: Niall Pemberton > Priority: Minor > Attachments: commons-math-complex-func.patch > > > 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(); -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.