From 1a79128d26fd55c103023d5a901fe59bc775b6d9 Mon Sep 17 00:00:00 2001 From: Federico Perini Date: Mon, 23 Sep 2024 10:51:03 +0200 Subject: [PATCH] Update example/linalg/example_norm.f90 Co-authored-by: jalvesz <102541118+jalvesz@users.noreply.github.com> --- example/linalg/example_norm.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/linalg/example_norm.f90 b/example/linalg/example_norm.f90 index 17a4d7625..43dc7e3eb 100644 --- a/example/linalg/example_norm.f90 +++ b/example/linalg/example_norm.f90 @@ -33,7 +33,7 @@ program example_norm print *, 'minval(||a(:,i)||) = ',norm(a, '-inf', dim=1) ! 1.00000000 0.00000000 3.00000000 ! Catch Error: - ! [norm] returned Value Error: dimension 4 is out of rank for shape(a)= [3 3] + ! [norm] returned Value Error: dimension 4 is out of rank for shape(a)= [3, 3] print *, 'invalid: ',norm(a,'inf', dim=4, err=err) print *, 'error = ',err%print()