Sha256: 8c12a7b2467a86c3f8818a5ab85cec2a8e90dfb2ff273cb8cf3ad937ea286ba3
Contents?: true
Size: 921 Bytes
Versions: 10
Compression:
Stored size: 921 Bytes
Contents
/* * This file is part of pocketfft. * Licensed under a 3-clause BSD style license - see LICENSE.md */ /*! \file pocketfft.h * Public interface of the pocketfft library * * Copyright (C) 2008-2018 Max-Planck-Society * \author Martin Reinecke */ #ifndef POCKETFFT_H #define POCKETFFT_H #include <stdlib.h> struct cfft_plan_i; typedef struct cfft_plan_i * cfft_plan; cfft_plan make_cfft_plan (size_t length); void destroy_cfft_plan (cfft_plan plan); int cfft_backward(cfft_plan plan, double c[], double fct); int cfft_forward(cfft_plan plan, double c[], double fct); size_t cfft_length(cfft_plan plan); struct rfft_plan_i; typedef struct rfft_plan_i * rfft_plan; rfft_plan make_rfft_plan (size_t length); void destroy_rfft_plan (rfft_plan plan); int rfft_backward(rfft_plan plan, double c[], double fct); int rfft_forward(rfft_plan plan, double c[], double fct); size_t rfft_length(rfft_plan plan); #endif
Version data entries
10 entries across 10 versions & 1 rubygems