gpt4 book ai didi

plot - 使用 racket plot/no-gui 进行图像质量控制

转载 作者:行者123 更新时间:2023-12-01 23:42:44 25 4
gpt4 key购买 nike

我正在使用 rakcet 语言的 plot/no-gui 库来呈现函数,我想增加 plot-file 调用创建的图像的 dpi。 (也欢迎任何风格评论)

我正在绘制的示例函数:

#lang racket
(require math)
(require plot/no-gui)

(plot-file (list (axes)
(inverse-interval (λ (x) 1)
(λ (x) -1)
-3.00000 3.000000)
(function (lambda (x) (* (expt 3 x) (sin (* 20 x)))) -1 1))
"images/plot_000000.jpg"
#:y-min -4
#:y-max 4)

最佳答案

绘图的大小由参数 plot-widthplot-height 控制。图片本身没有 dpi - dpi 描述了您的屏幕。

试试这个:

#lang racket
(require math)
(require plot/no-gui)

(define scale 4)
(plot-width (* scale (plot-width))
(plot-height (* scale (plot-height))

(plot-file (list (axes)
(inverse-interval (λ (x) 1)
(λ (x) -1)
-3.00000 3.000000)
(function (lambda (x) (* (expt 3 x) (sin (* 20 x)))) -1 1))
"images/plot_000000.jpg"
#:y-min -4
#:y-max 4)

关于plot - 使用 racket plot/no-gui 进行图像质量控制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31285436/

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