diff options
author | jofret | 2008-09-09 13:51:47 +0000 |
---|---|---|
committer | jofret | 2008-09-09 13:51:47 +0000 |
commit | d80697e7ca9932cb408155f7ba9e390a190d91df (patch) | |
tree | c4a837bac9c8ef92fc942919a3f945092756ad5b /src/elementaryFunctions/conj/zconjs.c | |
parent | cc0ca79aab3b22c23fbb1c7a7e0dec1c26418d16 (diff) | |
download | scilab2c-d80697e7ca9932cb408155f7ba9e390a190d91df.tar.gz scilab2c-d80697e7ca9932cb408155f7ba9e390a190d91df.tar.bz2 scilab2c-d80697e7ca9932cb408155f7ba9e390a190d91df.zip |
Moving Conjugate to auxiliary
Diffstat (limited to 'src/elementaryFunctions/conj/zconjs.c')
-rw-r--r-- | src/elementaryFunctions/conj/zconjs.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/elementaryFunctions/conj/zconjs.c b/src/elementaryFunctions/conj/zconjs.c deleted file mode 100644 index e58d4d75..00000000 --- a/src/elementaryFunctions/conj/zconjs.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab - * Copyright (C) 2008-2008 - INRIA - Allan SIMON - * - * This file must be used under the terms of the CeCILL. - * This source file is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at - * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - * - */ - -#include "conj.h" - -doubleComplex zconjs ( doubleComplex in ) -{ - return DoubleComplex ( zreals ( in ) ,- zimags( in )); -} |