Tags Comparing objects The “===” Operator in Julia admin July 23, 2023 In addition to the conventional “==” operator that checks if two objects are equal, Julia has the “===” operator to
Tags Julia Julia: Defining Functions Dynamically admin March 5, 2023 One of the widely discussed features of Julia is its support for metaprogramming. This feature makes it possible to generate
Tags DLL Calling External DLL Functions from Julia admin February 16, 2023 Julia supports calling external functions, especially those written in “C” language. As Julia documentation says, such calls do not involve
Using Julia from Mathematica admin November 24, 2022 In an earlier article, I had shown how it is possible to interact with Mathematica from Julia. In today’s article,
Tags C++ Is Deriving from a Concrete Class Bad? admin August 7, 2016 In my first post on Julia, I noted that the language does not allow deriving from a concrete (i.e., non-abstract)
Tags Julia Using Julia to Interact with Mathematica admin July 22, 2016 Mathematica is a powerful environment for symbolic and numerical computation. I have been using it for many years now. In
Tags Julia Multimethods in Julia admin July 7, 2016 I got interested in Julia programming language quite recently, primarily because of a project involving image processing and machine learning.