November 2016
Intermediate to advanced
697 pages
14h 44m
English
While Julia can rightfully claim to obviate the need to write some C or FORTRAN code, it is possible that you will need to interact with the existing C or FORTRAN shared libraries. Functions in such a library can be called directly by Julia, with no glue code, or boilerplate code or compilation needed. Because Julia's LLVM compiler generates native code, calling a C function from Julia has exactly the same overhead as calling the same function from C code itself. However, first, we need to know a few more things:
Ptr{T} is nothing more than the memory address for a variable of type Tbitstype is also used; bitstype is a ...Read now
Unlock full access