gpt4 book ai didi

gnuplot - 在 gnuplot 中设置箭头的标题

转载 作者:行者123 更新时间:2023-12-05 01:29:57 27 4
gpt4 key购买 nike

我用箭头画了一条垂直线,我想给它加上标题,以便它显示在键中。有办法吗?就手册而言,arrow 的语法中没有 title 选项,但我确信有解决方法。

我唯一想到的是用与绘图范围外的东西相同的颜色绘制箭头并使用它的标题,但它相当笨拙。

我正在使用终端 pngcairo,以防万一。

最佳答案

您可以绘制一些带有向量的东西,这将在键中给出一个title。它根据数据点绘制箭头。 using 语句是 x:yxy 其中尾部位于 (x, y),头部位于 (xx, yy)。对于垂直线,您可以关闭箭头并使用零的 Δx:

set terminal pngcairo dashed
set output 'plot.png'

set angles degrees
set xrange [0:360]
set yrange [-2:2]

plot sin(x), '-' using 1:(-2):(0):(4) with vectors nohead lc rgb 'black' title '90 degrees'
90
e

Result of gnuplot script

关于gnuplot - 在 gnuplot 中设置箭头的标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35685160/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com