Can anyone give me an idea about how to call Matlab
function from python
script using pymatlab
?
Matlab
, pymatlab
and python
are already properly installed.
I tried to run some Matlab
commands from here on python
script and everything works fine. But I have no idea regarding calling Matlab
function from python
.
For example, I have a Matlab
function which will receive a string
as argument
and will display it and return it, like below.
function [ name ] = print_Name(first_Name)
name=first_Name;
end
Thanks in advance for your kind suggestion.