I just switched from Matlab to Julia. One thing I’m trying to figure out is how to store my variables in Julia like mat files in Matlab? For example, in Matlab I would do this:
save(‘test.mat’, ‘Var1’, ‘Var2’, ‘Var3’);
Would anyone please show me how to do this in Julia?
Julia is open source, so the answer to that would be no.
There are plenty of packages that you could use though. JLD2.jl and HDF5.jl would offer similar capabilities to what you are used to in Matlab, I think.