We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3ed61a commit 40e35d5Copy full SHA for 40e35d5
src/stdlib_linalg_matrix_functions.fypp
@@ -45,7 +45,7 @@ contains
45
46
if (lda<1 .or. n<1 .or. lda/=n .or. lde/=n .or. ne/=n) then
47
err0 = linalg_state_type(this,LINALG_VALUE_ERROR, &
48
- 'invalid matrix sizes: A must be square (lda=', lda, ', n=', n, '), &
+ 'invalid matrix sizes: A must be square (lda=', lda, ', n=', n, ')', &
49
' E must be square (lde=', lde, ', ne=', ne, ')')
50
else
51
E(:n, :n) = A(:n, :n) ; call stdlib_linalg_${ri}$_expm_inplace(E, order, err0)
0 commit comments