diff options
Diffstat (limited to 'src/string/disp/cdisps.c')
-rw-r--r-- | src/string/disp/cdisps.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/string/disp/cdisps.c b/src/string/disp/cdisps.c index ee676e51..1d2f4d36 100644 --- a/src/string/disp/cdisps.c +++ b/src/string/disp/cdisps.c @@ -13,11 +13,8 @@ #include "disp.h" double cdisps (floatComplex in){ - - float RealIn = creals(in); - float ImgIn = cimags(in); - - printf(" %f + %fi " ,RealIn ,ImgIn); + + printf(" %f + %fi \n" ,creals(in) ,cimags(in)); return 0; } |