I have a text file (very sure) that is encoded in UTF16, but I don’t know how to load it in Julia. Do I have to load it as bytes and then use UTF16String To convert? The easiest way is to read i
Tag: julia
Julia: Using distributed arrays in expressions
I am trying to generate and evaluate expressions in different processes. The expression contains the local part of the distributed array, which seems to cause problems. For example,
addprocs(
How to use more complex type inheritance in Julia
I am trying to use the regular type Any in the following functions:
function f(arr::Array{Tuple{ASCIIString , Any},1})
arr[1]
end It applies to
f([(“a “,1), (“b”,”x”)]) But in
f(
Parallel processing – Julia parallel acceleration performance for large-scale calculation
General situation:
I developed a fairly large Navier-Stokes (finite difference) solver written in FORTRAN90. It has an adaptive network Grid (hence the load balancing problem), I tried variou