[go: up one dir, main page]

Showing 47 open source projects for "gsl"

View related business solutions
  • Gen AI apps are built with MongoDB Atlas Icon
    Gen AI apps are built with MongoDB Atlas

    The database for AI-powered applications.

    MongoDB Atlas is the developer-friendly database used to build, scale, and run gen AI and LLM-powered apps—without needing a separate vector database. Atlas offers built-in vector search, global availability across 115+ regions, and flexible document modeling. Start building AI apps faster, all in one place.
    Start Free
  • The Cloud Sales Acceleration Platform Icon
    The Cloud Sales Acceleration Platform

    For businesses wanting a platform to list, manage, and co-sell on cloud marketplaces with minimal engineering effort

    Streamline and automate your cloud sales cycle, enhance operational efficiency, and capitalize on marketplace opportunities with the Clazar Cloud Sales Acceleration Platform.
    Learn More
  • 1
    GSL

    GSL

    Guidelines support library

    ...While some types have been broken out into their own headers (e.g. gsl/span), it is simplest to just include gsl/gsl and gain access to the entire library. This project makes use of the Google Test testing library. Please see the ThirdPartyNotices.txt file for details regarding the licensing of Google Test.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 2

    ccgsl

    Use Gnu Scientific Library as if it were writtem in C++.

    The ccgsl provides simple C++ wrappers for the GNU Scientific Library. It uses Java-like shared-pointer classes in place of structs to avoid direct memory allocation/freeing and to work better with the STL. It lets you construct functions for optimisation, root-finding and the like from C++ member functions, making it easier to integrate with existing C++ code. It also provides C++ exceptions.
    Downloads: 2 This Week
    Last Update:
    See Project
  • 3
    dibnn

    dibnn

    Drop In the Bucket Neural Networks

    One more lightweight neural network in C.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 4
    Hex

    Hex

    Hydrogen-Electron Collisions

    A computer code for simulation of electron-hydrogen scattering. Contains three (more or less) finished sub-programs: (a) “hex-ecs” which solves the Schrödinger equation in the B-spline basis, (b) “hex-dwba” which computes scattering variables for high energies using the distorted wave Born approximation of the first order and finally (c) “hex-db” which is a user interface to a plain SQLite database, where the intermediate results are being stored, and which is used to extract...
    Downloads: 0 This Week
    Last Update:
    See Project
  • Propel Software: Product Value Management Platform for Manufacturers Icon
    Propel Software: Product Value Management Platform for Manufacturers

    For modern product companies that need to connect product and commercial teams successfully

    Propel is a cloud-native Product Value Management platform that unifies PLM, QMS, and PIM in one connected system, giving manufacturers complete visibility and control across the entire product lifecycle. It provides a single source of truth for all product data, streamlines change management, strengthens quality and compliance processes, and accelerates time-to-market by eliminating the silos and manual steps that slow teams down.
    Learn More
  • 5

    F3DM

    Finite Element Method on 3D Meshes

    f3dmlib is a FEM library that can read, write and analyse 3D tetrahedral meshes, minimize a given functional, and refine the resulting meshes. The minimization is parallelized with OpenMP. Three main features in unstable 1.8.x version (available via GIT): quadratic elements, periodic boundary conditions, and the solver for scalar and electromagnetic wave equations. f3dmgeom is a collection of a few simple tools for creating surface meshes for tetgen. It can handle simple geometries only.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6

    Interpolator

    Multi-platform C++ QT Project for polynomial regression

    ...It is modular, so support for a new file type can be added by including a plugin in the plugins folder. To compile the software you need to run qmake first. Make sure to install the dependent Qt add-ons such as QtCharts. You also need GSL library (GNU Scientific Library). On linux you will probably find built packages in your package manager (e.g. sudo apt install libgslX libgslcblas0 -- X is the version number, remember to update dependencies to the right version/name in .pro file). On windows you need to search for a built GSL package or build it yourself and change the path in the .pro file. ...
    Downloads: 3 This Week
    Last Update:
    See Project
  • 7
    A Python interface to the GSL library. The wrapper covers nearly everything GSL provides.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 8
    ffp

    ffp

    A 3D Free Finite element Program

    ...Still under development but already working: solves the steady state Navier-Lamé and the Laplace equation in 3D on tetrahedrons. It uses the Intel MKL and NVIDIA CUDA library for solving. GSL support needs to be improved. Open CL is still missing. In addition to the numerical core (which can be used stand-alone), another project called mcf exists for using ffp as a FEFLOW plug-in.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9

    mdoptcli

    Multidimensional Optimizer for Command Line

    This program is a command-line interface to several multi-dimensional optimization algorithms coded in the *GNU Scientific Library -- GSL*. Namely the *Simplex* algorithm, which does not need a gradient, and from the gradient-based algorithms the *Conjugate Gradient -- CG* and the *Broyden-Fletcher-Goldfarb-Shanno -- BFGS* methods. The energy (and possibly energy gradient) is evaluated by a given command, which has to accept coordinates on standard input and returns the appropriate energy (or gradient) on standard output.
    Downloads: 0 This Week
    Last Update:
    See Project
  • ServiceDesk Plus, a world-class IT and enterprise service management platform Icon
    ServiceDesk Plus, a world-class IT and enterprise service management platform

    Design, automate, deliver, and manage critical IT and business services

    Best in class online service desk software. Offer your customers world-class services with ServiceDesk Plus Cloud, the easy-to-use SaaS service desk software from ManageEngine, the IT management division of Zoho. Track and manage IT tickets efficiently, resolve issues faster, and ensure end-user satisfaction with the cloud-based IT ticketing system used by over 100,000 IT service desks worldwide. Manage the complete life cycle of IT incidents, problems, changes, and projects with out of the box ITIL workflows. Create support SLAs, define escalation levels, and ensure compliance. Automate ticket dispatch, categorization, classification, and assignment based on predefined business rules, and set up notifications and alerts for timely ticket resolution. Reduce walk ins and unnecessary tickets by giving your users more control. Enable end users to access IT services through your service catalog in the self-service portal. Help users create and track tickets and search for solutions.
    Learn More
  • 10

    irayMol

    Molecular visualization

    Analyses and Interactive visualizations of the structures, functions and actions of biomolecules including molecular surface computation, and protein-ligand interface and protein-ligand docking where the ligand could a small compound, a nucleic acid, membrane and other proteins, written in C++/Qt/openGL/GLSL with more than 125,000 lines of codes. In addition to Qt, the only external library needed is GSL everything else is coded from the scratch.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11
    C++ Core Guidelines

    C++ Core Guidelines

    The C++ Core Guidelines are a set of tried-and-true guidelines

    The C++ Core Guidelines is a living set of best-practice recommendations for writing modern, safe, and maintainable C++. Authored and curated by leaders in the C++ community, it organizes guidance into rules on type and resource safety, interfaces, performance, error handling, concurrency, and library design. Each rule is rationale-driven, showing the “why” behind recommendations and linking to examples that illustrate good and bad patterns. The guidelines encourage use of modern language...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12
    GNU Scientific Library for Windows

    GNU Scientific Library for Windows

    GNU Scientific Library(GSL) 2.2.1 for Windows

    This version of GNU Scientific Library(GSL) is compiled for Windows using gcc 6.2.0. It contains both static as well as shared libraries.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13

    gsl-pt_BR

    manual da gsl em pt-BR

    Manual da Gnu Scientific Library em português do Brasil. O manual possui código fonte no formato texinfo.
    Downloads: 2 This Week
    Last Update:
    See Project
  • 14

    FGSL

    Fortran interface to GSL

    This project provides a thick binding to a large subset of the GNU Scientific Library API, using the C interoperability functionality provided in Fortran 2003.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    OpenCL porting of GSL project
    Downloads: 5 This Week
    Last Update:
    See Project
  • 16
    allink

    allink

    Software for data analysis, image processing, simulations, solver.

    ...Avvis) perform all the operation of Matematica on different sets of data visualized on a Qt graphical interface. DrImage) image manipulation on the Matematica filters. The program is intended to use as less as possible external libs (optional: openGL, gsl, fftw, cgal, png, tiff, boost, MPI, Qt...).
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    Qtag Cloud

    Qtag Cloud

    A free open source toy to generate your own Tag Clouds

    A free C/C++ Qt based open source software to generate your own highly customizable Words Clouds.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 18

    MFR LQ controller with SBU

    Model-free recursive LQ controller with GSL and ODE

    Unique Control theory is "Model-free recursive LQ controller(=无模型递归LQ控制器=無模型遞歸LQ控制器)". This theory executes the optimum control without the model information. The control of the monocycle(=独轮车=獨輪車=segway=Self Balance Unicycle=SBU=赛格威=賽格威) was executed by using Open Dynamics Engine that was a physical engine together with this theory.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19
    This App solves a system of simultaneous equations (liner or nonlinear) by using a matrix root solver. Iterations and solutions are provided by GSL (GNU science library).
    Downloads: 0 This Week
    Last Update:
    See Project
  • 20

    OpenETran

    Electric power system transient simulator

    ...Capacitor switching, TRV, and other applicaitons may be added. EPRI originally had permission to use code from the Numerical Recipes book in LPDW. These routines have been removed in favor of GSL.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 21
    Infinity.NET

    Infinity.NET

    Port of the GNU Scientific Library Special Functions module to .NET

    This is the source code port of the Special Functions module from the GNU Scientific Library (GSL) to the .NET environment. The library includes implementation of the Airy functions, Bessel functions, Gamma related functions, etc.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 22
    mlpy

    mlpy

    Machine Learning Python

    mlpy is a Python module for Machine Learning built on top of NumPy/SciPy and of GSL. mlpy provides high-level functions and classes allowing, with few lines of code, the design of rich workflows for classification, regression, clustering and feature selection. mlpy is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. mlpy is available both for Python >=2.6 and Python 3.X.
    Downloads: 2 This Week
    Last Update:
    See Project
  • 23

    Suprangen - pseudorandom numbers

    Suprangen is a system of libraries for pseudorandom number generation

    Suprangen is a system of libraries of pseudorandom number generators for Monte Carlo simulation and similar applications. It includes uniform and normal double precision generators with 32 or 52 random bits, Fortran 90 interfaces, and interfaces to GSL.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 24
    myGSL是基于GSL(v 1.14)库的数值计算项目. 该项目的目的在于提高GSL库的易用性,并致力于提升GSL库的计算效能. 该项目兼容于GSL库.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 25
    Yet another library of convex optimization routines; this one works with the GNU scientific library. Focuses on interior point methods for linear programming, second order cone programing and semidefinite programming
    Downloads: 0 This Week
    Last Update:
    See Project
  • Previous
  • You're on page 1
  • 2
  • Next