Write complex 64 matrix tag.
(fid, kind, mat)
| 185 | |
| 186 | |
| 187 | def write_complex_float_matrix(fid, kind, mat): |
| 188 | """Write complex 64 matrix tag.""" |
| 189 | _write_matrix_data(fid, kind, mat, FIFF.FIFFT_COMPLEX_FLOAT) |
| 190 | |
| 191 | |
| 192 | def write_complex_double_matrix(fid, kind, mat): |
nothing calls this directly
no test coverage detected