核磁怎么样编写组合脉冲的程序

Varian/Agilent的语句。这是在1,2两个通道同时发射相位为零的180脉冲。1. 组合脉冲可以这样一个个发下去,即使用一连串的pulse/simpulse之类txphase(v1);rgpulse(pw,v1,rg1,rg1);txphase(v2);rgpulse(2.0*pw,v2,rg1,rg1);txphase(v3);rgpulse(pw,v3,rg1,rg1);2. 更好的方式是使用xmtron/xmtroff:xmtron();txphase(v1);delay(pw);txphase(v2);delay(2.0*pw);txphase(v3);delay(pw);xmtroff();3. 还可以用Varian的pbox_pulse .....具体参考user programming。


    推荐阅读