Temporary (or anonymous) function handles for ML 6

버전 1.0.0.0 (2.18 KB) 작성자: Nathan Thern
Creates a temporary function m-file and returns a handle to it.
다운로드 수: 1.3K
업데이트 날짜: 2005/1/28

라이선스 보기

The anonymous function handle feature of ML 7 is a long-needed feature, and one that I have longed for since I began writing scripts in early ML 6.

Unfortunately, I am still forced to use ML 6 most of the time, so I came up with a way to create "psuedo-anonymous" function handles: that is, function handles to real m-file functions that are created on the spot and will be deleted in the near future.

TMP_HANDLE writes out a temporary function m-file in its private subdirectory and then returns a handle to it. As a side effect, it searches for old temporary function files and deletes them.

I have TMP_HANDLE set to delete temporary function m-files that are older than 30 days. The whole idea of cluttering up a subdirectory with little m-files is distasteful, but not really a big deal given modern disk sizes. I have chosen to live with it.

Next step:
Make TMP_HANDLE a class with overloaded feval and subsref so you can call
feval(t_hndl,x,y)
OR just
t_hndl(x,y)

Matlab 5 has feval and classes with overloading, so making tmp_handle a class should allow it to work with ML 5.

인용 양식

Nathan Thern (2025). Temporary (or anonymous) function handles for ML 6 (https://kr.mathworks.com/matlabcentral/fileexchange/6755-temporary-or-anonymous-function-handles-for-ml-6), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R12
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0

Improved the documentation