Got this error coming from FileIO.save
which had no Google search results to help. I ran:
save("filename","varname", var)
Turns out I forgot to include the file extension! This fixed it
save("filename.jld","varname", var)
Got this error coming from FileIO.save
which had no Google search results to help. I ran:
save("filename","varname", var)
Turns out I forgot to include the file extension! This fixed it
save("filename.jld","varname", var)
Thanks a lot