Jake Roth
Results
2
comments of
Jake Roth
I had to do the following (which is manually/hardcoded for R2020b) > 1. clone my version https://github.com/jacob-roth/MATLAB.jl.git > 2. add `push!(LOAD_PATH,"C:\\Users\\roth0674\\git\\MATLAB.jl")` to AppData/Local/Programs/Julia-1.x.x/etc/julia/startup.jl and open REPL > 3. from REPL,...
Adding on, is there a better way to convert a sparse matrix `A` from CSC to CSR besides the following? ``` Acsr = SparseMatricesCSR.SparseMatrixCSR(transpose(sparse(transpose(A)))) ```