我想评估下面以符号方式定义的函数并使用 Julia 绘制结果。
f(x) = 2x(1-x/10) 对于 (0,20] 中的 x。
我该怎么办?
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)