Sign in
third-party-mirror
/
eigen
/
ec30e0afa2dbef4ab6fdb11be981e0aae638bc4f
/
.
/
blas
/
f2c
/
d_cnjg.c
blob: 623090c6b0ecf9eae7f76a8fa16ca8cde9e98171 [
file
]
#include
"datatypes.h"
void
d_cnjg
(
doublecomplex
*
r
,
doublecomplex
*
z
)
{
r
->
r
=
z
->
r
;
r
->
i
=
-(
z
->
i
);
}