how can i solve this error knowing im working on app designer ?and does the input setappdate under a certain library?

조회 수: 1 (최근 30일)

채택된 답변

Walter Roberson
Walter Roberson 2022년 11월 29일
You called setappdate with a final e instead of setappdata with a final a
  댓글 수: 2
Walter Roberson
Walter Roberson 2022년 11월 29일
Your current code has
setappdate(0,'filename',filename);
% ^--- notice the e
The code needs to be
setappdata(0,'filename',filename);
% ^--- notice the a

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by