我是靠谱客的博主 儒雅雪碧,最近开发中收集的这篇文章主要介绍Matlab调用.py文件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

下面的例子阐明了如何通过使用Python模块来调用python的方法,其中模块中包含着下面的例子中所使用的函数。
这个例子解释了如何在MATLAB中创建模块。如果你使用Python的文本编辑器来编写mymod.py,首先要确保这个模块处理python搜索路径中。

首先在MATLAB的Editor中创建一个文件,复制如下的命令并把这个文件保存为mymod.py。

# mymod.py
"""Python module demonstrates passing MATLAB types to Python functions"""
def search(words):
    """Return list of words containing 'son'"""
    newlist = [w for w in words if 'son' in w]
    return newlist

def theend(words):
    """Append 'The End' to list of words"""
    words.append('The End')
    return words

在MATLAB的命令提示行中,输入以下命令,来添加当前目录到Python搜索路径中。

if count(py.sys.path,'') == 0
    insert(py.sys.path,int32(0),'');
end


Create an input argument, a list of names, in MATLAB.
N = py.list({'Jones','Johnson','James'});

在调用search函数时,在模块名字和函数名字前面键入“py.”。

names = py.mymod.search(N);

其中,names中保存有py.list类型的值。原先的输入N是没有变化的。

最后

以上就是儒雅雪碧为你收集整理的Matlab调用.py文件的全部内容,希望文章能够帮你解决Matlab调用.py文件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部