필터 지우기
필터 지우기

case sensitivity issue of "load" function

조회 수: 5 (최근 30일)
Yu Li
Yu Li 2024년 3월 30일
편집: John D'Errico 2024년 3월 30일
Hi:
I see in documentation here:
Matlab is case sensitve, however, I noticed that the load function is not case sensitive in some situation. for example, I have a file locate in path: C:/Test/abc.mat, I can read the file by
A=load('C:/Test/abc.mat'),
or
A=load('C:/test/abc.mat')
so my question is, is there anyway to make the load function case sensitivy, i.e. returns empty when I enter A=load('C:/test/abc.mat')
Thanks!
Yu
  댓글 수: 1
Stephen23
Stephen23 2024년 3월 30일
"...is there anyway to make the load function case sensitivy..."
No, because the behavior you describe is entirely due to your OS. It has nothing to do with MATLAB.

댓글을 달려면 로그인하십시오.

채택된 답변

John D'Errico
John D'Errico 2024년 3월 30일
편집: John D'Errico 2024년 3월 30일
You cannot change the behavior of existing supplied code. If it works that way, then it does, and there is no way to tell load to be case sensitive on the file name.
Anyway, the thing is, the case sensitivity is probably not a MATLAB issue, but a file system issue. For example, I see that the help for exist tells me this:
NAME is case insensitive on Windows systems, and case sensitive for files and folder on UNIX systems.
Can you fix it anyway? Probably, but not without writing code of your own. You can test in advance to make sure that it finds the correct file. So write your own fmction, perhaps called CSload. Have it test to see if a file exists with the name in the case specified. Be careful though, because exist itself is not case sensitive. But you should be able to read the list of all files in a directory. Then test to see, using regexp, for example, if the desired pattern has a match. If it does not, then CSload would be written to return an error. If a file exists with exactly the name as specified, then just call load.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by