machi 发表于 2017-5-22 17:37:37

fish3.0转5.0

def draw_curve
plane_curve
command

   table 7 name 'maxssr-x-z'

   set plotjpg

   pl create 7-x-z
   pl set back white
   pl set title text
   'maxssr-x-z'
   pl add table 7 mark line xlabel 'x-coordinate ' ylabe 'z-coordinate'
   set out 7-x-z.jpg
   pl hardcopy 7-x-z
   
   table 8 name 'maxssr-x'

   set plot jpg

   pl create 8-ssr-x
   pl set back white
   pl set title text
   'maxssr-x'
   pl add table 8 mark line xlabel 'x-coordinate ' ylabe 'maxssr'
   set out 8-ssr-x.jpg
   pl hardcopy 8-ssr-x

endcommand
end
draw_curve   
请问,这个fish3.0转5.0,除了最后引用函数加@,还应该改哪里?

dongxx0221 发表于 2017-5-22 21:25:54

有问题的肯定是pl命令

dongxx0221 发表于 2017-5-22 21:26:45

本帖最后由 dongxx0221 于 2017-6-7 23:24 编辑

。。。。。。。。。。。。。。。。。。

张杰河北 发表于 2017-6-3 09:59:52

这个命令流是干啥的

爵士英雄 发表于 2018-3-19 15:56:37

new 后面加一句set fish safe_conversion off 可以直接引用flac3d3.0 的fish语言,可以省去flac3d5.0fish语言@的符号添加;但不能更改绘图命令plot系列命令(3.0与5.0绘图命令有所变更)
页: [1]
查看完整版本: fish3.0转5.0