-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'fortran-lang:master' into pseudo_inverse
- Loading branch information
Showing
11 changed files
with
652 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
program example_mnorm | ||
use stdlib_linalg, only: mnorm | ||
use stdlib_kinds, only: sp | ||
implicit none | ||
real(sp) :: a(3,3), na | ||
real(sp) :: b(3,3,4), nb(4) ! Array of 4 3x3 matrices | ||
|
||
! Initialize example matrix | ||
a = reshape([1, 2, 3, 4, 5, 6, 7, 8, 9], [3, 3]) | ||
|
||
! Compute Euclidean norm of single matrix | ||
na = mnorm(a, 'Euclidean') | ||
print *, "Euclidean norm of matrix a:", na | ||
|
||
! Initialize array of matrices | ||
b(:,:,1) = a | ||
b(:,:,2) = 2*a | ||
b(:,:,3) = 3*a | ||
b(:,:,4) = 4*a | ||
|
||
! Compute infinity norm of each 3x3 matrix in b | ||
nb = mnorm(b, 'inf', dim=[1,2]) | ||
|
||
! 18.0000000 36.0000000 54.0000000 72.0000000 | ||
print *, "Infinity norms of matrices in b:", nb | ||
end program example_mnorm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.