Skip to content

Commit

Permalink
Changed complex data type in table
Browse files Browse the repository at this point in the history
  • Loading branch information
TeetotalingTom committed Jun 17, 2024
1 parent ddd4fc7 commit c0c883c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion igor2/binarywave.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class NullStaticStringField (StaticStringField):
# From IgorMath.h
TYPE_TABLE = { # (key: integer flag, value: numpy dtype)
0: None, # Text wave, not handled in ReadWave.c
1: _numpy.complex_, # NT_CMPLX, makes number complex.
1: _numpy.complex128, # NT_CMPLX, makes number complex.
2: _numpy.float32, # NT_FP32, 32 bit fp numbers.
3: _numpy.complex64,
4: _numpy.float64, # NT_FP64, 64 bit fp numbers.
Expand Down

0 comments on commit c0c883c

Please sign in to comment.