save - Compiled Matlab mat file corruption -


i have compiled application cannot save user defined objects. when try load mat file in program crashes access violation error. mat file cannot loaded in matlab either (appears corrupt). however, application runs smoothly before compilation. possible causes this?

classdef audio < handle  properties     ... end  methods     function self = audio()         ...     end end  end  = audio(); b = audio(); c = audio(); audiovector = [a,b,c]  save(somefullpath, 'audiovector') 


Comments

Popular posts from this blog

c++ - llvm function pass ReplaceInstWithInst malloc -

java.lang.NoClassDefFoundError When Creating New Android Project -

Decoding a Python 2 `tempfile` with python-future -