|
NuMFor cf0f85d (2025-09-27)
Numerical (Modern) Fortran. Library for Simple Numerical computing
|
Data Types | |
| interface | save_array |
| save_array Stores an 1D or 2D array to file or stdout More... | |
Modules | |
| module | array_utils |
| This module provides convenience routines to operate or get information on arrays. | |
Functions/Subroutines | |
| logical function, public | allclose (a, b, rtol, atol) |
| allclose returns True if two arrays are element-wise equal within a tolerance. | |
| real(dp) function, dimension(:), allocatable, public | merge_sorted (x1, x2, tolerance) |
| This function creates a sorted array with values from two input sorted arrays. | |
| real(dp) function, public | std (x) |
| std Computes the standard deviation of the array. | |
| real(dp) function, public | mean (x) |
| mean Computes the arithmetic mean of the array. | |