how to run the program written in C language in matlab
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
i need to know the steps to run the program which is written in C language in matlab please help
1 commentaire
Jos (10584)
le 25 Fév 2016
compile it to an executable using a C-compiler and use the command system within matlab ...
Réponses (1)
Walter Roberson
le 25 Fév 2016
Compile to an executable and then use system() or dos() or unix() .
Or, compile with a mex interface and call the function as if it were built-in.
Or, use loadlibrary() to call it with its existing interface.
0 commentaires
Voir également
Catégories
En savoir plus sur MATLAB Compiler dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!