Application example of FftReal class. FftReal クラスの使用例.

Dependencies:   Array_Matrix mbed UIT_FFT_Real

Revision:
2:03e1399ed9eb
Parent:
1:f070e455cea0
Child:
3:4ef52c7f5281
--- a/main.cpp	Fri Dec 19 12:34:56 2014 +0000
+++ b/main.cpp	Thu Oct 29 06:33:32 2015 +0000
@@ -1,6 +1,6 @@
 //--------------------------------------------------------------
 // Demo program of FftReal class
-// Copyright (c) 2014 MIKAMI, Naoki,  2014/12/19
+// Copyright (c) 2015 MIKAMI, Naoki,  2015/10/29
 //--------------------------------------------------------------
 
 #include "dftComplex.hpp"
@@ -12,7 +12,8 @@
 
 int main()
 {
-    const int N = 256;//16;       // number of date for FFT
+//    const int N = 16;       // number of date for FFT
+    const int N = 256;       // number of date for FFT
 
     float x1[N], x2[N];
     Complex y1[N], y2[N/2+1];