在 Praat,我需要编写一个脚本,我可以在其中创建一个包含多列的表。然后还将数据插入这些列。
请让我知道该怎么做?
您可以使用适当命名的命令创建Table
具有列名的对象。Create Table with column names...
你给它对象的名称、行数和一个带有列名的字符串,用空格分隔。
要将值插入表中,您需要选择它,然后使用Set numeric value...
或Set string value...
,具体取决于您要插入的数据类型。
columns$ = "index text number"
rows = 10
table = Create Table with column names: "table", rows, columns$
for i to rows
# The table is already selected, but it's always a good idea
# to confirm the selection at the beginning of a for loop
selectObject: table
Set numeric value: i, "index", i
Set numeric value: i, "number", randomGauss(0, 0.1)
Set string value: i, "text", "this is row " + string$(i)
endfor