필터 지우기
필터 지우기

Getting a handle to a function inside a package folder

조회 수: 3 (최근 30일)
sst
sst 2012년 2월 16일
Hi, suppose I want to get a handle to a function inside a package folder +mypackage.
I would have assumed that the following would work:
import mypackage.*
func = @(X) myfunction(X);
func(Y);
However, I realized that I have to explicitly specify the package name:
func = @(X) mypackage.myfunction(X);
func(Y);
Was this intended? Do I need to specify the package name everytime I try to get a handle to a function inside it? Is there a way around this?
I am using MATLAB R2010b (64-bit) on Windows 7.
Thanks.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by