why the save instruction not execute correctly in matlab 2013 , code is below
1 view (last 30 days)
Show older comments
mntaser salem
on 26 Jan 2015
Commented: mntaser salem
on 26 Jan 2015
x=100;
>> save('test.mat','x');
Error using save
Unable to write file test.mat: permission denied.
>> x=100;
>> save('test.mat','x','append');
Error using save
Variable 'append' not found.
0 Comments
Accepted Answer
More Answers (0)
See Also
Categories
Find more on Workspace Variables and MAT-Files in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!