Write a double-precision floating point tag to a fif file.
(fid, kind, data)
| 85 | |
| 86 | |
| 87 | def write_double(fid, kind, data): |
| 88 | """Write a double-precision floating point tag to a fif file.""" |
| 89 | data_size = 8 |
| 90 | data = np.array(data, dtype=">f8").T |
| 91 | _write(fid, data, kind, data_size, FIFF.FIFFT_DOUBLE, ">f8") |
| 92 | |
| 93 | |
| 94 | def write_float(fid, kind, data): |
no test coverage detected