MATLAB Permission
35 次查看(过去 30 天)
显示 更早的评论
Hi,
I am receiving an error while trying to save a file. I have entered:
A=[34,45;17,6]
save A1.dat A -ascii
I am receiving
??? Error using ==> save
Unable to write file A1.dat: permission denied.
I just installed MATLAB and do not know how to grant myself permission to write the files.
0 个评论
回答(4 个)
Andreas Goser
2012-1-10
There is no need to enable saving or so. This will be just related to the directory / folder you attempt writing to. Mostly, this is when you have a directory within yout MATLAB installation. Try a different directory. If difficulties persist, let us know the OS, the MATLAB release and the directory name.
4 个评论
Andreas Goser
2012-1-12
"directory name" is with relation to the operating system. In MATLAB, you get the "current directory", e.g. by using the PWD command, or you see it at the top of the IDE. If yoo copy that string into the Windows Explorer, then you can check permissions. If it is below the MATLAB installation path, you should chosse a different directory for saving data.
Sven Schoeberichts
2012-1-12
Sounds like you're using a school's computer, and appearently you lack the permission to write to the MATLAB directory.
Try saving to a USB memory stick, or the My Documents folder.
0 个评论
Getinet Amare
2017-12-20
编辑:Walter Roberson
2017-12-20
use this command with file name getinet.mat
save(fullfile(tempdir, 'getinet.mat'))
and to load a file with file name getinet.mat
load(fullfile(tempdir, 'getinet.mat'))
have a nice coding with great day
1 个评论
Walter Roberson
2017-12-20
Be careful, though: if you are using a shared computer, then the systems administrator might delete the contents of the temporary directory at any time. Also, some operating systems delete the temporary directory files each time the system reboots.
karim botros
2023-10-2
In Windows,
1) you need to open matlab as administrator, if you are admin.
2) create the folder and check if the path fully exists.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Search Path 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!