Xmgrace 通过批处理文件删除数据集中的特定行
Xmgrace delete specific row in dataset via batch file
我想删除数据集的第一行。我尝试通过命令 window (Window
>Commands
) 输入 any:
S0[2][0]
S0[1][0]
S0[1][1]
S0[1:2][1]
但是我遇到了错误:
[Error] syntax error: S0[2][0]
[Error] syntax error: S0[1][0]
[Error] syntax error: S0[1][1]
[Error] syntax error: S0[1:2][1]
有什么办法吗?
我从xmgr commands得到了答案,这是用命令DROP
实现的
- setnum DROP expr, expr
- graphno.setnum DROP expr, expr
Drop points in setnum (or graphno.setnum). The parameters give the index of the first and last points to drop, respectively.
我想删除数据集的第一行。我尝试通过命令 window (Window
>Commands
) 输入 any:
S0[2][0]
S0[1][0]
S0[1][1]
S0[1:2][1]
但是我遇到了错误:
[Error] syntax error: S0[2][0]
[Error] syntax error: S0[1][0]
[Error] syntax error: S0[1][1]
[Error] syntax error: S0[1:2][1]
有什么办法吗?
我从xmgr commands得到了答案,这是用命令DROP
- setnum DROP expr, expr
- graphno.setnum DROP expr, expr
Drop points in setnum (or graphno.setnum). The parameters give the index of the first and last points to drop, respectively.