- see if there is only one function called dataset in your search path and make sure you are adding the correct one.
- 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.
Standalone application giving error (function dataset) when Matlab is working fine
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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?
0 commentaires
Réponses (1)
Marc Jakobi
le 14 Oct 2016
Here's a few things you can do to debug:
2 commentaires
Marc Jakobi
le 14 Oct 2016
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.
Voir également
Catégories
En savoir plus sur MATLAB Compiler dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!