17 skills found
shayneobrien / Numerical MethodsMethods in numerical analysis. Includes: Lagrange interpolation, Chebyshev polynomials for optimal node spacing, iterative techniques to solve linear systems (Gauss-Seidel, Jacobi, SOR), SVD, PCA, and more.
jloveric / High Order Layers TorchHigh order and sparse layers in pytorch. Lagrange Polynomial, Piecewise Lagrange Polynomial, Piecewise Discontinuous Lagrange Polynomial (Chebyshev nodes) and Fourier Series layers of arbitrary order. Piecewise implementations could be thought of as a 1d grid (for each neuron) where each grid element is Lagrange polynomial. Both full connected and convolutional layers included.
DivitMittal / Lagrangian ReconstructionGo implementation of Shamir's Secret Sharing via Lagrange interpolation for polynomial reconstruction.
Treecodes / BaryTreeBaryTree is a library for fast computation of N-body interactions on multiple GPUs, based on barycentric Lagrange and Hermite polynomial interpolation treecodes, using OpenACC for GPU parallelization.
perpendicooler / Code For Numerical Analysis Executed In FORTRAN And MATLABThis is a Git repository containing code for a numerical analysis lab using Fortran and MATLAB
lovasoa / Lagrange CppLagrange interpolation polynomials in C++11
AlexeyShpavda / NumericalAnalysisMethodsIf you find any errors in the work of algorithms, you can fix them by creating a pull request
i12cu2 / Numerical Approximation MatlabLagrange's interpolation Newton interpolation Analogue function Hermite interpolation function Spline interpolation Polynomial canonical orthogonal fit Newton-cotes formula Euler's method
bekaiser / FornbergA generalized finite difference / interpolation algorithm using Lagrange polynomials from B. Fornberg (1998).
surajrampure / Lagrange InterpolationA tool that uses Lagrange interpolation in order to fit a polynomial to a given data set.
idealarihant / Biometric Template Security Using Fuzzy Vault EncryptionImplemented a robust biometric security system utilizing the Fuzzy Vault Technique to lock and encrypt biometrics such as fngerprints and palmprints with a unique key. Employed Polynomial Reconstruction and Lagrange interpolation algorithms for secure unlocking of the encrypted biometric data.
junaidrahim / Program Homework SolverInput a few integers of a series and it will return the source code to output that series till the nth term..
0xTnxl / Lagrange Polynomial EncodingMessage encoding using Lagrange interpolation over a finite field. Encode data into polynomials.
d35ha / SequencePredictorA very simple tool that is able to predict the upcoming number of any polynomial ruled sequence using lagrange interpolation
motisoltani / LagrangeInterpolationMethod PythonThe Lagrange interpolation formula is a way to find a polynomial, called Lagrange polynomial, that takes on certain values at arbitrary points. Lagrange’s interpolation is an Nth degree polynomial approximation to f(x). This program implements Lagrange Interpolation Method for finding a polynomial in python programming language and it's necessary to enter X & Y. This program shows you the graph related to the polynomial and the data. I hope you find it useful.
legaldomain / CSE330 Numerical MethodsLab 0: Introduction to Python Lab 1: Floating Point Representation Lab 2: Polynomial Interpolation (Matrix Method) Lab 3: Lagrange Interpolation Lab 4: Hermite and Newton's Divided Difference Interpolation Lab 5: Differentiation and Richardson Extrapolation Lab 6: Nonlinear Equations
stevenktruong / Numerical Methods PythonA repository containing implementations of various numerical methods written in Python