Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个从 1.5 到 2.5 的 yrange,但 gnuplot 那时只显示“2”而不是“2.0”,即它截断了“.0”
如何防止“.0”被截断,以便所有轴标签显示相同数量的有效数字?
谢谢!
您可以使用以下命令控制 x(例如)tic 标签的格式
set format x "%.2e"
对于小数点后有 2 位有效数字的科学记数法。更多信息类型
help set format
另请注意,字符串打印命令接受格式字符串,例如代码
mynum = 42.2 set title sprintf("My favorite number is %.2e", mynum)
会给标题
"My favorite number is 4.22e+01"