Skip to content

issues Search Results · repo:JuliaMath/Roots.jl language:Julia

Filter by

143 results
 (52 ms)

143 results

inJuliaMath/Roots.jl (press backspace or delete to remove)

Hi, I m not sure if this is the correct repository to send this, if not please direct me to the correct one. I ve been having some issues with circular dependencies for a day or two now and I think I ...
  • AntoninoDAnna
  • 6
  • Opened 
    on Jan 11
  • #460

using Roots find_zero(x- sqrt(x)-4,(10,18),atol=1) # happy with x=18 find_zero(x- sqrt(x)-4,(10,18),Roots.AlefeldPotraShi(),atol=1) # keep going to x=16 Atol seems to be ignored by AlefeldPotraShi. This ...
  • weymouth
  • 1
  • Opened 
    on Jan 10
  • #458

using Roots find_zero(x- x^2-4,(0,Inf)) # 2.0 correct find_zero(x- x^2-4,(0,Inf),atol=1) # 1.5? find_zero(x- x^2-4,(0,Inf),atol=1e-3) # 1.5??? find_zero(x- x^2-4,(0,8),atol=1) # correct find_zero(x- x^2-4,(0,8),atol=1e-3) ...
  • weymouth
  • 1
  • Opened 
    on Jan 10
  • #457

An error occurs when using Roots.jl to solve an equation, the result should be -2.0, not -1.58. The error only occurs when I use uncertainties. using Measurements, Roots a = measurement(1.0 , 0.1) b ...
  • jmarcellopereira
  • 4
  • Opened 
    on Dec 28, 2024
  • #453

the CommonSolve interface mentions: The problem-algorithm-solve interface is a pattern popularized in Julia by the DifferentialEquations.jl suite of packages. This can be used as an alternative to find_zero. ...
  • longemen3000
  • 2
  • Opened 
    on Dec 1, 2024
  • #452

Using the example in the README: julia using Roots julia f(x) = exp(x) - x^4 julia @code_warntype find_zero(f, (8.0, 9.0)) MethodInstance for Roots.find_zero(::typeof(f), ::Tuple{Float64, Float64}) ...
  • densmojd
  • 4
  • Opened 
    on Sep 13, 2024
  • #446

Hello, I wrote a very simple code in Julia1.10.5. using Roots function f(x) y = x-1.0 return y end x0 = find_zero(f,0.0) I got an error saying LoadError: code reflection cannot be used from ...
  • naonagas
  • 6
  • Opened 
    on Sep 6, 2024
  • #443

In my experience, using find_zero() with with bracketing methods always returns an error if the supplied interval is not in fact bracketing. Today, however, I discovered that Roots.Chandrapatla() does ...
  • ArturDoshchyn
  • 2
  • Opened 
    on Sep 1, 2024
  • #441

https://github.com/JuliaMath/Roots.jl/blob/4263c7683423af209af1879bd9cd223b0ba55acd/src/find_zeros.jl#L110 find_zeros fails when it calls approx_close. This is due to the dimension mismatch between two ...
  • hsugawa8651
  • 2
  • Opened 
    on Jul 21, 2024
  • #434

There s an apparent type instability when using Float32. Julia can probably handle it gracefully, but it s a bit annoying. julia using Roots julia using Pkg julia Pkg.status( Roots ) Status `~/.julia/environments/v1.10/Project.toml` ...
  • sgaure
  • 4
  • Opened 
    on Mar 13, 2024
  • #423
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! 
Press the
/
key to activate the search input again and adjust your query.
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! 
Restrict your search to the title by using the in:title qualifier.
Issue search results · GitHub