@brief Print out a square matrix
@param[in] v rectanbular matrix
@param[in] m number of columns in V
@param[in] n number of rows in V
@param[in] ndim leading dimension of V
@param[in] tag optional, will be printed at the beginning of each line
@param[in] maxcolumns optional, number of columns to wrap printing
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=dp), | intent(in) | :: | V(NDIM,M) | |||
| integer, | intent(in) | :: | m | |||
| integer, | intent(in) | :: | n | |||
| integer, | intent(in) | :: | ndim | |||
| character(len=*), | intent(in), | optional | :: | tag | ||
| integer, | intent(in), | optional | :: | maxcolumns |