It is possible to load c file in matlab
16 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
i have a c file named rrr.c , it is possible to load directly in matlab. possible means, how to load that file to matlab?
0 Commenti
Risposte (1)
Walter Roberson
il 13 Nov 2016
You can load the text of it using fileread() or low level I/O routines such as fopen/fgetl .
You cannot directly call any function defined in the file. To call upon the functions there, you need to either create a mex interface to the routines, or you need to use loadlibrary() . Both methods require that the code be compiled.
0 Commenti
Vedere anche
Categorie
Scopri di più su MATLAB Compiler in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!