Skip to content

Latest commit

 

History

History
70 lines (44 loc) · 3.43 KB

clang_basic.md

File metadata and controls

70 lines (44 loc) · 3.43 KB

C Programming Language

Learning C

Useful Libraries

Performance

Numerical

  • GSL - GNU Scientific Library

    • The library provides a wide range of mathematical routines such as random number generators, special functions and least-squares fitting. There are over 1000 functions in total with an extensive test suite.
    • The online reference manual can be found here.
  • FFTW

    • FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of arbitrary input size, and of both real and complex data (as well as of even/odd data, i.e. the discrete cosine/sine transforms or DCT/DST).
    • The online manual can be found here

Astronomy Related

Specific Topics

Multiprocessing

GPU Enhancement

Code to Study

On Interacting with Python