bspline-fortran icon indicating copy to clipboard operation
bspline-fortran copied to clipboard

Multidimensional B-Spline Interpolation of Data on a Regular Grid

Results 16 bspline-fortran issues
Sort by recently updated
recently updated
newest added

PGI Fortran compiler gives the following error when compiling the sub_module: ``` bspline-fortran/src> pgfortran -c -Ktrap=fp bspline_kinds_module.F90 bspline_sub_module.f90 bspline_kinds_module.F90: bspline_sub_module.f90: PGF90-W-0155-Integer overflow occurred when evaluating ** (bspline_sub_module.f90: 3615) PGF90-S-0098-Divide by...

PGI

Consider including [DEFC](http://www.netlib.org/slatec/src/defc.f) a least-squares B-Spline fit from SLATEC.

enhancement

Hi, Just want to ask how should the variables **inbvx,inbvy,inbvz,iloy,iloz,w1_3d,w2_3d,w3_3d** on a 3D splines be set for an open mp code? Should they be shared or private? Thank you. volcompt

question

Add a C/Python interface.

enhancement

Currently, we only have 1D integration. For completeness we should have 1D-6D. Note: this project may be useful: https://github.com/jacobwilliams/quadrature-fortran See also #33

enhancement

In bspline_sub_module.f90, 'many' array temporaries are created. When compiling with GCC 7.3.0 and the warning flag -Warray-temporaries, most of them intervene in the calls to dintrv, dbvalu, dbknot and dbtpcf...

enhancement

Update the CMake config file to enable more control of the build.

enhancement

Hi, Thanks for making bspline-fortran available. I'm trying to use it in a project that I compile with ifort. Unfortunately I have not managed to find the configuration file where...