Reputation: 55
Has anyone come across the "Bad version or endian-key" error in Matlab? A quick Google search hasn't yielded any results nor a visit to the Mathworks site.
I'm using R2013b and came across the error while running a compiled version of the program i.e. MCR version 8.2. The error came about while running a particularly large number of Monte Carlo simulations with large cell arrays used to store results. The program also uses the parallel computation toolbox and a Java based progress bar suited to parfor loops.
Upvotes: 2
Views: 2213
Reputation: 25140
My recollection is that that particular error can occur if you try to load corrupt data. In parallel computing, this can also occur if the transfer from workers back to the client is corrupt or truncated. (That message has message ID MATLAB:Deserialize which indicates it's to do with loading data).
Upvotes: 2