Write complex 128 matrix tag.
(fid, kind, mat)
| 190 | |
| 191 | |
| 192 | def write_complex_double_matrix(fid, kind, mat): |
| 193 | """Write complex 128 matrix tag.""" |
| 194 | _write_matrix_data(fid, kind, mat, FIFF.FIFFT_COMPLEX_DOUBLE) |
| 195 | |
| 196 | |
| 197 | def _write_matrix_data(fid, kind, mat, data_type): |
nothing calls this directly
no test coverage detected