Write a double-precision floating-point matrix tag.
(fid, kind, mat)
| 175 | |
| 176 | |
| 177 | def write_double_matrix(fid, kind, mat): |
| 178 | """Write a double-precision floating-point matrix tag.""" |
| 179 | _write_matrix_data(fid, kind, mat, FIFF.FIFFT_DOUBLE) |
| 180 | |
| 181 | |
| 182 | def write_int_matrix(fid, kind, mat): |
no test coverage detected