代码之家  ›  专栏  ›  技术社区  ›  Mead

gnuplot中“plot”命令内的“if”语句

  •  4
  • Mead  · 技术社区  · 7 年前

    if(flag==0){plot sin(x)}
    
    if(flag==1){plot sin(x), cos(x)}
    

    因此,根据“flag”的值,我可以绘制稍微不同的图。然而,按上述方式操作意味着对标志的每个设置重复plot命令,如果我的标志有多个设置,这很快就会变得很费力。有没有办法在plot命令中使用“if”语句?例如,类似于:

    plot sin(x), if(flag==1){cos(x)}
    

    2 回复  |  直到 7 年前
        1
  •  1
  •   Karl    7 年前

    生成空打印窗口

    plot "-" ps 0 notitle
    0 0
    e
    

    (或类似的东西)然后做你原来的计划,但用“replot”

    if(flagsin==1){replot sin(x)}
    if(flagcos==1){replot cos(x)}
    
        2
  •  1
  •   maij    7 年前

    unset key
    a = 1
    plot sin(x), (a == 1 ? cos(x) : NaN)
    

    根据您的需要,钥匙处理会变得困难。

    第二个想法是根据一些标志构建plot命令:

    # initial plot command which plots nothing, additional functions 
    # can be appended with a comma
    plot_command = "plot NaN notitle"
    
    sin_flag = 1
    cos_flag = 1
    
    if (sin_flag == 1) {
       plot_command = plot_command.", sin(x)"
    }  
    
    if (cos_flag == 1) {
       plot_command = plot_command.", cos(x)"
    }  
    
    # print the final plot command (just for a check)
    print plot_command
    
    # execute the plot command
    eval plot_command