mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
7 lines
117 B
C
7 lines
117 B
C
|
#include "datatypes.h"
|
||
|
|
||
|
void d_cnjg(doublecomplex *r, doublecomplex *z) {
|
||
|
r->r = z->r;
|
||
|
r->i = -(z->i);
|
||
|
}
|