MATLAB: Storing a variable in location temp

location tempMATLABmatrixstore variabletemp

in a project i have we are asked to store variable a in location temp "Store a in location temp (so you can recover a in case an error is made)". the variable a represents a matrix. how would i go about doing this?

Best Answer

temp = a;
Related Question