textscan and Regexp form .c file
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
If I do have a .C file, I need to find control function name and data type. how will use MATLAB command? example: .c file
#include "headerfile.h"
double PI_A (double a, double b)
{
double c;
c=a+b;
return c;
}
I want function name and data type as a output. PI_A is function name, double is datatype.
0 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu Text Files finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!