diff options
Diffstat (limited to 'src/string/disp/zdisps.c')
-rw-r--r-- | src/string/disp/zdisps.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/string/disp/zdisps.c b/src/string/disp/zdisps.c index 9f404cf3..894ecf15 100644 --- a/src/string/disp/zdisps.c +++ b/src/string/disp/zdisps.c @@ -12,9 +12,9 @@ #include "disp.h" -void zdips (doubleComplex in) { +void zdisps (doubleComplex in) { double RealIn = zreals(in); double ImgIn = zimags(in); - printf("%lf + %lfi" ,RealIn ,ImgIn); + printf("%f + %fi" ,RealIn ,ImgIn); } |