Julia Source Codes
-
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.
-
bisection_test
-
DifferentialEquations.Midpoint_test,
a Julia code which
uses the Midpoint() method from the DifferentialEquations()
package to solve a differential equation.
-
euler,
a Julia code which
uses the Euler method to estimate the solution of an ordinary
differential equation (ODE).
-
euler_test
-
gadfly_test,
a Julia code which
uses the gadfly graphics library.
-
hello,
a Julia code which
prints "Hello, world!".
-
hello_test
-
ODE.ode23s_test,
a Julia code which
tests the ode23s() solver from the ODE package
to solve a differential equation.
-
PyPlot_test,
a Julia code which
tests graphics functions from the PyPlot() package.
-
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.
-
regula_falsi_test
-
tester,
a BASH script which runs the test codes.
-
timestamp,
a Julia code which
prints the current YMDHMS date as a timestamp.
-
timestamp_test
-
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.
-
zero_illinois_test
-
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.
-
zero_itp_test
Revised on 28 March 2024.