Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
c55b0172b26fcf0a0b8d5ef0b98c87128e0f6bdb
/
.
/
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
);
}