void SpectrumTier_list (SpectrumTier me, bool includeIndexes, bool includeFrequency, bool includePowerDensity) { try { autoTable table = SpectrumTier_downto_Table (me, includeIndexes, includeFrequency, includePowerDensity); Table_list (table.peek(), false); } catch (MelderError) { Melder_throw (me, U": not listed."); } }
void Spectrum_list (Spectrum me, bool includeBinNumbers, bool includeFrequency, bool includeRealPart, bool includeImaginaryPart, bool includeEnergyDensity, bool includePowerDensity) { try { autoTable table = Spectrum_downto_Table (me, includeBinNumbers, includeFrequency, includeRealPart, includeImaginaryPart, includeEnergyDensity, includePowerDensity); Table_list (table.peek(), false); } catch (MelderError) { Melder_throw (me, ": not listed."); } }
void Formant_list (Formant me, bool includeFrameNumbers, bool includeTimes, int timeDecimals, bool includeIntensity, int intensityDecimals, bool includeNumberOfFormants, int frequencyDecimals, bool includeBandwidths) { try { autoTable table = Formant_downto_Table (me, includeFrameNumbers, includeTimes, timeDecimals, includeIntensity, intensityDecimals, includeNumberOfFormants, frequencyDecimals, includeBandwidths); Table_list (table.peek(), false); } catch (MelderError) { Melder_throw (me, U": not listed."); } }