- Add MYFCT to the MATLAB path
- Define MYFCT as a subfunction in the GUI code
- Dynamically add the path to it in the GUI open callback and remove the path in the 'CloseRequestFcn' callback:
How to have a struct as input to an external function?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi,
I want to call an external function inside my matlab gui with the handles structure as input, as all my input parameters are inside that structure. However, when trying
myfct(handles)
Inside one of my callbacks in the gui m-file i receive a matlab error Undefined function 'myfct' for input arguments of type 'struct'.
I really don't know what Im doing wrong, especially because I have done similar earlier in my gui. Anyone who can help...
댓글 수: 0
답변 (2개)
Ryan Livingston
2013년 1월 23일
Odds are MYFCT is not on the path when the GUI code is running so it cannot be located. If you replace that with a call to:
which myfct
it should again say it is not found. You can try
댓글 수: 2
참고 항목
카테고리
Help Center 및 File Exchange에서 File Operations에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!