|
From: | Kire Pudsje |
Subject: | Re: how to use fft in c++ |
Date: | Fri, 9 Jun 2017 20:28:53 +0200 |
Ok, thanks again! That's nice!
But I still don't get it.. I reduced the code to figure out the problem:
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <math.h>
#include <oct.h>
#include <builtin-defun-decls.h>
// #include <toplev.h>
using namespace std;
int main()
{
DEFUN_DLD(testfft, args, nargout, "\testfft\n\")
{
octave_value_list retval;
int nargin = args.length ();
retval = Ffft (args);
return retval;
}
return 1;
}
[Prev in Thread] | Current Thread | [Next in Thread] |