Bifurcation problem

Hi, I have a parameter p = [ P1 and P2] and I compute my residual and Jacobian of my problem by varying only the P2 but passing p as the input. In Julia when I try to pass just the P2 Parameter to bifurcation problem which is actually varied while computation of residual and stiffness matrix I encounter an error message which says stopping continuation and the divergence occurs. How can I fix this

can you post a minimal working example?

Note that you can use ``` to make the code nicer

This is not a minimal working example, I cannot run it.

You should do @reset opts_br.newton_options.verbose=true and pass verbosity = 3 to better investigate the non convergence.

Ahh sorry I misunderstood. I will check it though. Thanks

I have another question. How can we call a function F(a,b,c,m,n) from Matlab into Julia which mostly depends on a,c and other input arguments are mostly constants. After calling the function into Julia how can I verify that it works as expected when I provide a and c as inputs in Julia.