在PRAAT中插入列

时间:2014-10-30 19:25:28

标签: praat

在Praat中,我需要编写一个脚本,我可以创建一个包含多列的表。然后还将数据插入到这些列中。

请告诉我怎么做?

1 个答案:

答案 0 :(得分:0)

您可以使用具有适当命名的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