Is it possible to force case-sensitivity for data operations like LOAD?
조회 수: 1 (최근 30일)
이전 댓글 표시
MATLAB is case-sensitive for calling functions, even on Windows:
>> edit Untitled
>> untitled
Cannot find an exact (case-sensitive) match for 'untitled'
Is there a way to enforce case sensitivity on Windows for other functions, like load?
>> a = 3;
>> save a a
>> load A
The problem is that this code will run fine on Windows, but will error if I send it to a friend on Unix.
댓글 수: 0
답변 (1개)
Jan
2013년 8월 7일
This is a feature of the operating system and cannot be controlled from inside Matlab.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!