Write integer 32 matrix tag.
(fid, kind, mat)
| 180 | |
| 181 | |
| 182 | def write_int_matrix(fid, kind, mat): |
| 183 | """Write integer 32 matrix tag.""" |
| 184 | _write_matrix_data(fid, kind, mat, FIFF.FIFFT_INT) |
| 185 | |
| 186 | |
| 187 | def write_complex_float_matrix(fid, kind, mat): |
no test coverage detected