Calling MATLAB functions in python -
problem occurred while calling matlab function in python after importing matlab functions python package. error shown in python shell:
here, barcode
name of package generated using matlab library compiler , barcodepy
function in package.
it not necessary use barcodepy
example:
your code :
import barcode a=barcodepy.initialize() a=barcode.barcodepy.initialize()
correct code:
import barcode a=barcode.initialize()
Comments
Post a Comment