gpt4 book ai didi

Julia 密谋 : how to add both a single point and a list of points to a scatter plot

转载 作者:行者123 更新时间:2023-12-05 09:35:03 26 4
gpt4 key购买 nike

如果我绘制以下函数:

f(x::Float64) = 4 - x^2
scatter(c1p2e16, -3.0:0.1:3.0)

我会得到:

enter image description here

我还根据 2 个值制作了以下向量:

val1 = 1                           >> 1
val2 = median(map(c1p2e16, x)) >> 3
vec = [val1,val2]

我想将这些值添加到第一个图中,以便显示一些 1,3 点,例如:

enter image description here

最佳答案

您可以分散!(注意感叹号)添加到您现有的绘图中:

julia> scatter(f, -3.0:0.1:3.0)

julia> scatter!([1], [3], color = "green", label = "", markersize = 10)

enter image description here

编辑:您的示例中的颜色实际上看起来更像 lime,所以也许可以更改它:)

关于 Julia 密谋 : how to add both a single point and a list of points to a scatter plot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66149950/

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