Sign in
third-party-mirror
/
eigen
/
098702126e4722aff1bef404113593483d6a2e76
/
.
/
blas
/
f2c
/
r_cnjg.c
blob: c08182f88ec5bf785540739cdfad9ad343982005 [
file
] [
log
] [
blame
]
#include
"datatypes.h"
void
r_cnjg
(
complex
*
r
,
complex
*
z
)
{
r
->
r
=
z
->
r
;
r
->
i
=
-(
z
->
i
);
}