Category Archives: Julia

WIP: making error locations in julia-repl clickable

By: Tamás K. Papp

Re-posted from: https://tamaspapp.eu/post/wip-julia-repl-clickable/

I scratched a long-standing itch and made locations in error messages "clickable" in julia-repl. Not yet merged into master, the change is in the clickable-locations branch.

Testing is needed because of some hacks (again, I am not an Emacs expert), I will see if there are issues then merge it. This is what it looks like, those red and orange lines take you to the source:

julia> include("/tmp/Foo.jl")
ERROR: LoadError: UndefVarError: T not defined
Stacktrace:
 [1] include_from_node1(::String) at ./loading.jl:576
 [2] include(::String) at ./sysimg.jl:14
while loading /tmp/Foo.jl, in expression starting on line 9

julia> 

GSoC 2017: Native Julia second order ODE and BVP solvers

By: JuliaLang - The Julia programming language

Re-posted from: https://julialang.org/blog/2017/11/gsoc-ode/

GSoC 2017: Native Julia second order ODE and BVP solvers | My original GSoC project was about implementing native Julia solvers for solving boundary value problems (BVPs) that were determined from second order ordinary differential equations (ODEs). I started down the BVP path, built a shooting method to solve BVPs from initial value problems (IVPs), and the…

Read more

GSoC 2017: Native Julia second order ODE and BVP solvers

By: n JuliaLang - The Julia programming language n

Re-posted from: https://julialang.org/blog/2017/11/gsoc-ode/index.html

GSoC 2017: Native Julia second order ODE and BVP solvers | My original GSoC project was about implementing native Julia solvers for solving boundary value problems (BVPs) that were determined from second order ordinary differential equations (ODEs). I started down the BVP path, built a shooting method to solve BVPs from initial value problems (IVPs), and the…