-
I am very new to Julia and its data structures. I want to track the path evolution, for the following Straightline homotropy |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Hi, the code you copied into your post should do exactly what you want: execute total degree homotopy on |
Beta Was this translation helpful? Give feedback.
-
Hi, there is no function which returns all intermediate steps, because they are discarded by default. You can, however, set up a The You should also check out the |
Beta Was this translation helpful? Give feedback.
Hi,
there is no function which returns all intermediate steps, because they are discarded by default. You can, however, set up a
tracker
and track the solutions from1
tot
for anyt
. See here for a small example.The
solver_startsolutions
functions can set up a tracker for you.You should also check out the
path_info
function.