Write a single-precision sparse compressed row matrix tag.
(fid, kind, mat)
| 416 | |
| 417 | |
| 418 | def write_float_sparse_rcs(fid, kind, mat): |
| 419 | """Write a single-precision sparse compressed row matrix tag.""" |
| 420 | return write_float_sparse(fid, kind, mat, fmt="csr") |
| 421 | |
| 422 | |
| 423 | def write_float_sparse(fid, kind, mat, fmt="auto"): |
no test coverage detected