share with others#plotted #functional_iterations
#8
(08/13/2022, 12:22 AM)JmsNxn Wrote: [Image: attachment.php?aid=1852]
OMG that's a real artwork!
Maybe you can make an NFT out of it and earn a lot of money!!!

(08/13/2022, 12:22 AM)JmsNxn Wrote: God I tried making animations and just got so god damned frustrated. I wish I knew how to use Sage better; but I couldn't get passed the syntax used to convert Pari-gp code into the Sage shell; and then run Sage's graphing protocol. I tried reading some breakdowns, but to no avail. Nothing helped. Especially because all the tutorials seem to be for the free to use Sage online app that seems to be the status quo now. I would love to make animated plots though. Ember made some animated plots of the beta method as you move \(b\) around.
Not exactly sure what you are doing. But an animation basically just a sequence of plots.
Say you have a plot
a=complex_plot(....(t)......)
and then you want to make an animated picture out of it, then you just do
Code:
ani=[]
for t in sxrange(0,T,delta):
  ani.append(complex_plot(.....(t).....)
animate(ani)

sxrange goes in steps of delta from 0 to just below T.
This can though take a long time.

We also can make in interactive session - say next weekend. I have some experience with Sage.
Reply


Messages In This Thread
RE: share with others#plotted #functional_iterations - by bo198214 - 08/13/2022, 08:02 AM



Users browsing this thread: 1 Guest(s)