JuliaPy / SymPy.jl

Julia interface to SymPy via PyCall
http://juliapy.github.io/SymPy.jl/
MIT License
266 stars 61 forks source link

Plotting vector-valued functions when one component is constant #526

Closed jverzani closed 10 months ago

jverzani commented 10 months ago

See discussion here https://discourse.julialang.org/t/plotting-the-tangen-line-of-a-vector-valued-function/104297/2

@syms t
g(t) = [t+3/2*sin(2t),  4*cos(t), a*cos(2t)]
a = 1
plot(g(t)..., 0, 2pi) # okay
a = 0
plot(g(t)..., 0, 2pi) # error
jverzani commented 10 months ago

Closed by #527