我有11个不同的文本波,从不同的样品中识别出分子式。我需要创建一个单一的“主”文本波中的所有公式确定在所有样本没有任何重复。
发布于 2021-07-17 16:37:41
在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中有独特的公式
https://stackoverflow.com/questions/68415932
复制相似问题