matlab intrinsic function call fails with "Invalid text character" error
古いコメントを表示
I have recently installed MATLAB and I get the following error with some of MATLAB intrinsic functions, such as the following:
usejava('desktop')
Error: File: system_dependent.m Line: 1 Column: 24
Invalid text character. Check for unsupported symbol, invisible character, or pasting of non-ASCII characters.
What is the source of this error and how can it be resolved?
6 件のコメント
Steven Lord
2020 年 5 月 15 日
What does this command display?
which -all system_dependent
If it too throws an error try:
builtin('which', '-all', 'system_dependent')
Walter Roberson
2020 年 5 月 15 日
try
restoredefaultpath; rehash toolboxcache
if that improves the problem then savepath
A.B.
2020 年 5 月 15 日
A.B.
2020 年 5 月 15 日
Walter Roberson
2020 年 5 月 15 日
Use your system file explorer to find system_dependent.m looking first under your own files and then under the MATLAB installation directory. What do you find?
Basically, you should not find any system_dependent.m as it is an undocumented built-in function.
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Search Path についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!