comparison data/model/FFTModel.h @ 1155:546d4e417346 3.0-integration

Tidy a bit
author Chris Cannam
date Fri, 22 Jan 2016 17:08:02 +0000
parents 5cbf71022679
children 444d133b5ab7
comparison
equal deleted inserted replaced
1154:aa588c391d1a 1155:546d4e417346
98 98
99 float getMagnitudeAt(int x, int y) const; 99 float getMagnitudeAt(int x, int y) const;
100 float getMaximumMagnitudeAt(int x) const; 100 float getMaximumMagnitudeAt(int x) const;
101 float getPhaseAt(int x, int y) const; 101 float getPhaseAt(int x, int y) const;
102 void getValuesAt(int x, int y, float &real, float &imaginary) const; 102 void getValuesAt(int x, int y, float &real, float &imaginary) const;
103 bool isColumnAvailable(int x) const;
104 bool getMagnitudesAt(int x, float *values, int minbin = 0, int count = 0) const; 103 bool getMagnitudesAt(int x, float *values, int minbin = 0, int count = 0) const;
105 bool getNormalizedMagnitudesAt(int x, float *values, int minbin = 0, int count = 0) const; 104 bool getNormalizedMagnitudesAt(int x, float *values, int minbin = 0, int count = 0) const;
106 bool getPhasesAt(int x, float *values, int minbin = 0, int count = 0) const; 105 bool getPhasesAt(int x, float *values, int minbin = 0, int count = 0) const;
107 bool getValuesAt(int x, float *reals, float *imaginaries, int minbin = 0, int count = 0) const; 106 bool getValuesAt(int x, float *reals, float *imaginaries, int minbin = 0, int count = 0) const;
108 107