Thanks so much!
On Wednesday, October 19, 2022 at 7:59:36 PM UTC+5:30 Emmanuel Charpentier
wrote:
> That can be done in Sage in a variety of ways . Here’s one :
>
> var("x, y")
> L = 3# Plotted function
> f =lambda x,y:cos(x)-2*y# Coloring# Colormap
> cm=colormaps["RdBu"]# We have to scale the
I want to plot the solution of my differential equation. However, the
solution returned by `desolve` is in implicit form (as should be expected,
the docs say most solution returned are like that)
Here is my current broken code.
```
x = var ('x')
y = function ('y')(x)
sol = desolve(diff(y,x)==