loop over array in gnuplot

后端 未结 1 383
时光取名叫无心
时光取名叫无心 2020-12-28 15:08

This question is related to Loop structure inside gnuplot? and the answer there by DarioP.

gnuplot 4.6 introduced the do command. How can I use this to lo

相关标签:
1条回答
  • 2020-12-28 15:53

    If you want to have all files in a single plot, you need to use plot for[... (supported since version 4.4). Looping over several plot commands with do for (supported only since version 4.6) works only in multiplot mode.

    The following two solutions both plot all data in one graph, but differ a bit in the iterations.

    The first solution uses word to extract a word from a string directly when plotting.

    colors = "red green #0000FF"
    files = "file1 file2 file3"
    plot for [i=1:words(files)] word(files, i).'.dat' lc rgb word(colors, i)
    

    The second solution changes the linetype and then iterates directly over the word list instead of using an index.

    colors = "red green #0000FF"
    files = "file1 file2 file3"
    set for [i=1:words(colors)] linetype i lc rgb word(colors, i)
    plot for [file in files] file.'.dat'
    
    0 讨论(0)
提交回复
热议问题