Can I download built-in Matlab functions somewhere?

조회 수: 2 (최근 30일)
Andreas Donauer
Andreas Donauer 2015년 7월 6일
댓글: Steven Lord 2015년 7월 6일
Hi, I'm working on a GUI and would like to use the 'addlistener' routine, which is a built-in function in current Matlab releases. Since I'm still working on r2008a (where the routine is not available yet), my question is if this routine is available for download somewhere, so I can add it to my Matlab version?

채택된 답변

dpb
dpb 2015년 7월 6일
Nope, only upgrading to a release which includes it (or, in some cases, there are File Exchange submissions which provide the functionality for earlier releases but they're not "builtins"). I'm guessing the addlistener routine requires hooks into Matlab not available for even a mex file.
  댓글 수: 4
Alex Taylor
Alex Taylor 2015년 7월 6일
Unless I'm missing something, the use case of the file exchange submission in question is directly supported in MATLAB by the documented interface: event.proplistener:
Steven Lord
Steven Lord 2015년 7월 6일
It is now. It wasn't back when Yair originally submitted that file; then he WAS using undocumented and unsupported functionality.

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

추가 답변 (1개)

Steven Lord
Steven Lord 2015년 7월 6일
ADDLISTENER is part of release R2008a. It was introduced along with the newest object-oriented programming system (as described in the Release Notes for MATLAB for that release.) It is a method of the handle class, so you will need to call it with a handle object as the first input argument "HSOURCE". If you're trying to use this to listen to properties of Handle Graphics objects, I'm not sure if that is possible, supported, and/or recommended in that release.

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by