0

我有 11 个不同的文本波形,其中包含来自不同样本的已识别分子式。我需要创建一个“主”文本波,其中包含所有样本中标识的所有公式,没有任何重复。

4

1 回答 1

0

在 Igor 7+ 中,您可以使用FindDuplicates命令执行此操作。

需要的步骤是:

// concatenate 11 different text waves
// make a string of semicolon separated wavenames that you'd like to combine e.g.
String wList = WaveList("textw*",";","")
// and do
Concatenate/O/NP=0 wList, longTextWave
// an alternative is to type them all out
Concatenate/O/NP=0 textw0,textw1, ... textw11, longTextWave
// longTextWave will be a long 1D text wave (/NP=0 does this job)
// get unique formulas
FindDuplicates/O/RT=uniqueTextWave longTextWave

独特的公式在 uniqueTextWave

于 2021-07-17T08:37:41.190 回答