Why does notebook -setup fail with non-US version of Windows XP?
조회 수: 2 (최근 30일)
이전 댓글 표시
Some users are experiencing problems with:
notebook -setup
when using a non-US version of Windows XP. The problem could be related to the function:
function templateLoc = getTemplateLoc
in notebook.m
채택된 답변
MathWorks Support Team
2009년 6월 27일
To work around this issue, replace 'template' with the appropriate translation in the language of your Windows version.
Example: German version of Windows XP:
Replace in notebook.m line 210
templatepath = [appdatapath '\Microsoft\template'];
with
templatepath = [appdatapath '\Microsoft\Vorlagen'];
댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!