用grads运行gs文件画gmf图时报错:ERROR: The "enable print" command is no longer valid. Use "gxprint" instead. GXPRINT error: missing output file name DISABLE error: Invalid keyword ERROR: The "enable print" command is no longer valid. Use "gxprint" instead. GXPRINT error: missing output file name DISABLE error: Invalid keyword
时间: 2023-07-03 13:04:21 浏览: 379
GrADS学习资料:GrADS绘图与编程实习手册.doc
这个错误可能是因为您的gs文件中使用了旧版本的grads命令。Graduate在新版本中已经不支持“enable print”命令,而是使用“gxprint”来代替。请尝试在gs文件中将所有“enable print”命令替换为“gxprint”,并确保在gxprint命令后面指定正确的输出文件名。
例如,将以下命令:
```
enable print
set print 'output.ps'
d gmf
disable print
```
替换为:
```
gxprint file='output.ps'
d gmf
disable gxprint
```
如果还有问题,请检查您的gs文件是否有其他旧版本命令,或者尝试使用最新版本的grads。
阅读全文