Write a single-precision floating-point matrix tag.
(fid, kind, mat)
| 170 | |
| 171 | |
| 172 | def write_float_matrix(fid, kind, mat): |
| 173 | """Write a single-precision floating-point matrix tag.""" |
| 174 | _write_matrix_data(fid, kind, mat, FIFF.FIFFT_FLOAT) |
| 175 | |
| 176 | |
| 177 | def write_double_matrix(fid, kind, mat): |
no test coverage detected