本文介绍了Matlab:在类中导入函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在Matlab中有一个类文件.
I have a class file in Matlab.
我使用软件包规范创建了目录结构.
I created i directory structure using the package specifications.
+MyPkg
|--+F1
|--+F2
|--+F3
| |--fun.m
|--myc.m
我的班级是myc
,它已插入到包MyPkg
中.
My class is myc
and it is inserted in the package MyPkg
.
功能fun
保存在主程序的子程序包F3
中.
A function fun
is saved in subpackage F3
in the main one.
我想在我的课上使用功能fun
.怎么样???
I want to use function fun
in my class. How???
推荐答案
您需要在所有地方将fun
称为MyPkg.F3.fun
.不幸的是,完整的软件包必须在MATLAB中的任何地方显式使用(或者,您必须使用import
语句).
You need to refer to fun
as MyPkg.F3.fun
everywhere. Unfortunately, full packages must be used explicitly everywhere in MATLAB (or, you must use import
statements).
这篇关于Matlab:在类中导入函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!