“标识符” |
Rel_Std_Dev_RT_Calibs |
“范围” |
峰或组 |
“类型” |
Double |
“说明” |
所有校正标样保留时间的相对标准偏差(仅显示在校正标样结果中(sample type = 1);针对 SampleType.Calibration 类型的所有进样计算)。 |
“公式” |
if(Sample_Type = 1, RelStdDev("Peak_RetentionTime", AllMatchingPeaksAndGroups(MatchOption.Compound, CurrentSequence.AllInjectionsOfType(SampleType.Calibration))),"") |
这将返回所有类型为校正标样的进样中拥有相同名称的化合物的标准偏差。如果不同的信号上存在多个拥有相同名称的化合物,则在计算该标准偏差时将考虑所有化合物。 |
如果仅需要计算所有校正标样进样中特定信号的峰的标准偏差,请使用 MatchOption.CompoundOnSignal:
if(Sample_Type = 1, RelStdDev("Peak_RetentionTime", AllMatchingPeaksAndGroups(MatchOption.CompoundOnSignal, CurrentSequence.AllInjectionsOfType(SampleType.Calibration))),"")