gpt4 book ai didi

plot - 使用 Racket 绘制点

转载 作者:行者123 更新时间:2023-12-04 02:22:47 25 4
gpt4 key购买 nike

在花了一些时间查看文档、搜索网络并根据提示进行试验后,我没有成功使用 Racket 绘制点。有人可以发布一个示例,说明我将如何为我的 x 坐标绘制 (0 1 2 3 4 5) 并为 y 坐标绘制 (0 1 4 9 16 25)。我认为 1 个很好的例子可以解决问题。

最佳答案

基于first example of the doc ,并考虑到您要绘制的函数 already exists在 Racket 中,它很简单:

(require plot)
(plot (function sqr 0 5 #:label "y = x ^ 2"))

enter image description here

如果只想看个别点,这个也摘自the docs :

(require plot)
(define xs '(0 1 2 3 4 5))
(define ys '(0 1 4 9 16 25))
(plot (points (map vector xs ys) #:color 'red))

相当于

(require plot)
(plot (points '(#(0 0) #(1 1) #(2 4) #(3 9) #(4 16) #(5 25)) #:color 'red))

enter image description here

关于plot - 使用 Racket 绘制点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26351792/

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