Can not use the publish pdf function!
23 ビュー (過去 30 日間)
古いコメントを表示
Hi! When I try to publish my code the following message comes up. For the firs error I choose to add the file to the matlab path but then when I try to publish again it says the second error. How do I fix this?![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/241325/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/241325/image.png)
0 件のコメント
採用された回答
Steven Lord
2019 年 10 月 6 日
The names of functions or function files in MATLAB cannot contain spaces or periods. Rename your file to remove the spaces and periods or replace them with underscore characters.
isvarname('Exercise P.4 6.m') % Will return false
isvarname('Exercise_P_4_6.m') % Will return true
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Entering Commands についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!