#Startzeitpunkt der Auswahl bestimmen start = Get start of selection #Endzeitpunkt der Auswahl bestimmen end = Get end of selection # Formant-Objekt erzeugen Extract visible formant contour # Sound-Editor verlassen endeditor # Werte abfragen und runden x = Get maximum: 1, start, end, "Hertz", "None" maxf1 = round(x) x = Get maximum: 2, start, end, "Hertz", "None" maxf2 = round(x) x = Get minimum: 1, start, end, "Hertz", "None" minf1 = round(x) x = Get minimum: 2, start, end, "Hertz", "None" minf2 = round(x) x = Get mean: 1, start, end, "Hertz" meanf1 = round(x) x = Get mean: 2, start, end, "Hertz" meanf2 = round(x) # Werte im Info-Fenster ausgeben clearinfo appendInfoLine: tab$, tab$, tab$, " F1", tab$, tab$, " F2" appendInfoLine: "Maximum", tab$, maxf1, tab$, tab$, maxf2 appendInfoLine: "Minimum ", tab$, minf1, tab$, tab$, minf2 appendInfoLine: "Mittelwert", tab$, meanf1, tab$, tab$, meanf2 # Formant-Objekt entfernen Remove