Error "too many inout arguments" using "diary"
이전 댓글 표시
I'm a beginner in Matlab and I'm receiving a message error saying "too many input arguments" when I try to use "diary" at the beginning of the code... I don't know what I am doing wrong. Could someone help me?
My code is
>> diary C:\Analise de Regressao\EXUnidade1.txt
Error using diary
Too many input arguments.
답변 (1개)
Cris LaPierre
2020년 10월 20일
Because there are spaces in your path, you need to enclose your file path+name in quotes.
diary 'C:\Analise de Regressao\EXUnidade1.txt'
카테고리
도움말 센터 및 File Exchange에서 Entering Commands에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!