Questions tagged [julia]

Julia stands out as a programming language that excels in speed, expressiveness, and dynamism. It has emerged as a powerful general-purpose language due to its strong focus on technical computing. Julia effectively tackles the common issue of needing two different languages by blending the user-friendly characteristics of high-level languages like R and Python with the exceptional performance capabilities of C and Fortran.

The Julia system of non-linear equations

Currently, I am facing the challenge of solving a set of 50 non-linear simultaneous equations in Julia. To start off, I am focusing on just 2 equations to ensure that the syntax is correct. Despite my efforts with various packages such as NLsolve, SymPy's ...

Using a matplotlib colormap from pyplot.jl as a custom function in Julia programming language

Is there a comparable method in Julia-lang to achieve the following: import numpy as np import matplotlib.pyplot as plt i = 0, f = 255, N = 100 colors = [ plt.cm.viridis(x) for x in np.linspace(i, f, N) ] How can I obtain the RGB list from a colormap usi ...