file not found or permission denied

조회 수: 255 (최근 30일)
PA
PA 2023년 5월 12일
답변: Shaik 2023년 5월 12일
I get an error of permission denied and also it says not enough input arguments when i try to export an output file

답변 (1개)

Shaik
Shaik 2023년 5월 12일
Hi,
The "permission denied" error occurs when the user who is running the MATLAB program does not have write permissions for the directory where the output file is being created. To fix this error, you should check the write permissions of the directory and make sure that the user running the MATLAB program has write permissions.
Here is an example code snippet that uses the dlmwrite function to write a matrix to a text file:
% Generate a matrix
A = rand(4);
% Specify the filename
filename = 'output.txt';
% Write the matrix to the file
dlmwrite(filename, A);

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by