Reputation: 2059
I would like to increase the matlab load
command timeout as I'm accessing a resource over the network (on Windows). The default is 10s as mentioned here.
How can this be achieved?
related: Matlab read from fifo with fopen timeout
Upvotes: 2
Views: 123
Reputation: 23685
I think that increasing the timeout will be hard to accomplish, but you have a way to circumvent this problem: copy the file to your local drive first, then load it. The speed will probably be the same, but you won't have to deal with the timeout.
The problem is probably caused by the fact that the mat files you are trying to load are saved using compression. This would not allow Matlab to explot the full bandwidth of your connection.
Upvotes: 1