评估 Julia 中数组的符号定义函数

问题描述 投票:0回答:1

我想评估下面以符号方式定义的函数并使用 Julia 绘制结果。

f(x) = 2x(1-x/10) 对于 (0,20] 中的 x。

我该怎么办?

math plot julia
1个回答
0
投票
using Symbolics
using Plots
@variables x

f(x) = 2 * x * (1 - x / 10)

# evaluate the function for values 0.1:0.1:20
values = f.(0.1:0.1:20)

# plot the results 
plt = plot(0.1:0.1:20, values, label="f(x) = 2x(1-x/10)", xlabel="x", ylabel="f(x)", lw=2)



display(plt)
© www.soinside.com 2019 - 2024. All rights reserved.