Can not use the publish pdf function!

조회 수: 2 (최근 30일)
Hanna Sundling
Hanna Sundling 2019년 10월 6일
답변: Steven Lord 2019년 10월 6일
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?

채택된 답변

Steven Lord
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.
To check if a name is a valid function name, call isvarname on it.
isvarname('Exercise P.4 6.m') % Will return false
isvarname('Exercise_P_4_6.m') % Will return true

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Desktop에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by