Standalone application giving error (function dataset) when Matlab is working fine

2 次查看(过去 30 天)
Hi all I am building a specific application composed of several functions and scripts and a GUI. When running the whole thing from Matlab it works perfectly. After compiling, though, I get an error saying "undefined function dataset for input arguments of type 'cell'". The funny thing is that dataset is meant to work with cell. I tried to add the dataset function to the path of the compiler and also adding the relevant files to the package, but got always the same result. Any advice?

回答(1 个)

Marc Jakobi
Marc Jakobi 2016-10-14
Here's a few things you can do to debug:
  1. see if there is only one function called dataset in your search path and make sure you are adding the correct one.
  2. Are you loading data from a MAT file? If there's a variable called dataset that gets loaded or created, Matlab won't recognise it as a function anymore.
  2 个评论
Edoardo Simioni
Edoardo Simioni 2016-10-14
Thank you for your answer Marc. But would not the options you mentioned already give an error in Matlab and not only in the deployed application?
Marc Jakobi
Marc Jakobi 2016-10-14
It depends on which Matlab version you are using. In older versions, you have to add the functions manually.
Another issue could be if you are using eval(). That will get compiled without Matlab adding the function that is called by eval(). If you are, I would look for another way to call it without eval.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 MATLAB Compiler 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by