Home
last modified time | relevance | path

Searched refs:fft_plot (Results 1 – 4 of 4) sorted by relevance

/dports/misc/iio-oscilloscope/iio-oscilloscope-0.14-master/plugins/
H A Dfmcomms1.c615 OscPlot *fft_plot = plugin_find_plot_with_domain(FFT_PLOT); in cal_rx_button_clicked() local
619 plugin_get_plot_fft_avg(fft_plot, NULL); in cal_rx_button_clicked()
673 OscPlot *fft_plot = NULL; in display_cal() local
694 fft_plot = plot_fft_2ch; in display_cal()
706 plugin_get_plot_marker_type(fft_plot, device_ref) == MARKER_IMAGE) { in display_cal()
712 ret = plugin_data_capture_of_plot(fft_plot, device_ref, &cooked_data, NULL); in display_cal()
811 plugin_get_plot_marker_type(fft_plot, device_ref) == MARKER_IMAGE) { in display_cal()
825 if (plugin_get_plot_marker_type(fft_plot, device_ref) != MARKER_IMAGE) in display_cal()
836 ret = plugin_data_capture_of_plot(fft_plot, device_ref, NULL, &markers); in display_cal()
874 ret = plugin_data_capture_of_plot(fft_plot, device_ref, NULL, &markers); in display_cal()
[all …]
H A Dscpi.c717 OscPlot *fft_plot = plugin_find_plot_with_domain(FFT_PLOT); in get_markers() local
721 ret = plugin_data_capture_of_plot(fft_plot, device_ref, NULL, &markers); in get_markers()
/dports/audio/eq10q-lv2/eq10q-2.2/gui/widgets/
H A Dbodeplot.cpp116 fft_plot = new double[(FFT_N/2) + 1]; in PlotEQCurve()
187 delete[] fft_plot; in ~PlotEQCurve()
1018 fft_plot[i]= 0.0; in setSampleRate()
1712 fft_plot[0] = 1e6; //I don't care about DC in redraw_fft_widget()
1725 fft_plot[i] = m*(20.0f*fastLog10((int*)(&val), fft_log_lut) + fft_gain + fft_pink_noise[i]); in redraw_fft_widget()
1730 …binMax = fft_plot[i] < binMax ? fft_plot[i] : binMax; //Yes it is reversed because binMax is reall… in redraw_fft_widget()
1738 binMax = fft_plot[i]; in redraw_fft_widget()
H A Dbodeplot.h152 double *fft_plot; variable