For functions f on the discrete circle {0,ā¦,N-1} this program computes their uncentered maximal functions and the ratio of the Lp norms of the kth derivative of the maximal function and the function.
Building
If git is installed you can fetch the repository using
git clone https://cgit.jnwt.eu/discretemf
The program is written in C and hence requires a C compiler for building. If make and gcc are installed then running
make
builds three files:
charf_approxdoes computations using floating point (double) numbers, which come with rounding errors.charf_errordoes computations using floating point (double) numbers and gives an upper bound for the total rounding error.charf_exactdoes exact computations using fractions. Nominator and denominator are of typeunsigned long longand bounded in size accordingly.
Correctness
I am relatively confident that the error bounds are correct for all operations except exponentiation, which is not used for pā{1,ā}.
