Julia Source Codes


  1. bisection, a Julia code which applies the bisection method to seek a root of f(x) over a change-of-sign interval a <= x <= b.
  2. bisection_test
  3. DifferentialEquations.Midpoint_test, a Julia code which uses the Midpoint() method from the DifferentialEquations() package to solve a differential equation.
  4. euler, a Julia code which uses the Euler method to estimate the solution of an ordinary differential equation (ODE).
  5. euler_test
  6. gadfly_test, a Julia code which uses the gadfly graphics library.
  7. hello, a Julia code which prints "Hello, world!".
  8. hello_test
  9. ODE.ode23s_test, a Julia code which tests the ode23s() solver from the ODE package to solve a differential equation.
  10. PyPlot_test, a Julia code which tests graphics functions from the PyPlot() package.
  11. regula_falsi, a Julia code which applies the regula_falsi method to seek a root of f(x) over a change-of-sign interval a <= x <= b.
  12. regula_falsi_test
  13. tester, a BASH script which runs the test codes.
  14. timestamp, a Julia code which prints the current YMDHMS date as a timestamp.
  15. timestamp_test
  16. zero_illinois, a Julia code which applies the Illinois method to seek a root of f(x) over a change-of-sign interval a <= x <= b.
  17. zero_illinois_test
  18. zero_itp, a Julia code which finds a zero of a scalar function of a scalar variable, starting from a change of sign interval, using the Interpolate/Truncate/Project (ITP) method, which has faster convergence than the bisection method. a root of f(x) over a change-of-sign interval a <= x <= b.
  19. zero_itp_test

Revised on 28 March 2024.