Ivan Pribec
Ivan Pribec
**Description** A function to pad a string with zeros or another symbol to a given width could be helpful in many cases, especially together with the `to_string()` function for integer...
#310 added the `reverse` function to the `stdlib_ascii` module. Since the behavior of this function does not depend on the character set, the `stdlib_string` module would be a better home...
Before we dive into the implementation of root-solvers, optimization routines, and quadrature routines (see #87 and #112 ) I think it is worth discussing the "standard" way of defining callback...
Related to #150 (non-special mathematical functions) ## `cbrt` - Cube root of a real number ### Description Returns the cube root of the real number \(x\), that is a number...
### Motivation Functions for low-order polynomial fitting using (weighted) least squares regression are common in many scientific libraries. Here's an interface for the non-weighted case, inspired by the numpy version...
### Motivation While working with data that varies at runtime like reading data from a file, or algorithms that don't have fixed bounds on the number of items they create...
So there have been a few discussions about optval before: * https://github.com/fortran-lang/stdlib/issues/524 * https://github.com/fortran-lang/stdlib/issues/448 The former thread established the performance implications of sprinkling `optval` here and there are likely negligible....
Motivated by the question from @vmagnin at [Discourse](https://fortran-lang.discourse.group/t/writing-a-binary-file-in-little-endian/719). For those not familiar with the term [endianness](https://dlang.org/spec/portability.html#endianness) (quoting the D language documentation): > Endianness refers to the order in which multibyte...
From @milancurcic in #539: > General question for everybody, do we have a guide on when to put a function implementation in its own submodule and when to leave it...
### Is your feature request related to a problem? Please describe Currently Compiler Explorer doesn't recognize fixed-form Fortran, such as ```fortran FUNCTION HORNER(N,A,X) C EVALUATE POLYNOMIAL USING HORNER'S SCHEME DOUBLE...