| 43 | // compatibility. |
| 44 | |
| 45 | GrB_Info GxB_Matrix_resize // change the size of a matrix |
| 46 | ( |
| 47 | GrB_Matrix A, // matrix to modify |
| 48 | GrB_Index nrows_new, // new number of rows in matrix |
| 49 | GrB_Index ncols_new // new number of columns in matrix |
| 50 | ) |
| 51 | { |
| 52 | return (GrB_Matrix_resize (A, nrows_new, ncols_new)) ; |
| 53 | } |
| 54 |
no test coverage detected