2009-06-12 9 views
1

Comment puis-je utiliser Symbolic Toolkit de MATLAB pour évaluer symboliquement les dérivés de C ou C++?Comment puis-je me connecter à MATLAB pour évaluer les dérivées symboliques à partir du code C?

+0

est-ce une question? – second

+0

non .. c'est des informations que j'ai recueillies que d'autres peuvent trouver utiles. – eduffy

+0

Ensuite, exprimez-le sous la forme d'une question et d'une réponse. http://stackoverflow.com/questions/18557/how-does-stackoverflow-work-the-unofficial-faq#119658 – dmckee

Répondre

2

Voici un exemple de travail, en C, avec Makefile pour gcc \ Linux. Si quelqu'un peut fournir des instructions de construction pour Windows ou Mac, veuillez le faire.

d'abord le code C:

#define _GNU_SOURCE 
#include <stdio.h> 
#include <ctype.h> 
#include <stdlib.h> 
#include <string.h> 
#include <engine.h> 

int main (int argc, char *argv[]) 
{ 
    Engine *engine; 
    mxArray *f; 
    mxChar *output; 
    char  *input; 
    char  *command; 
    size_t  input_size; 
    int  i; 

    engine = engOpen ("matlab -nojvm"); 
    engEvalString (engine, "syms x"); 

    input = NULL; 
    printf (">> "); getline (&input, &input_size, stdin); 
    while (!feof (stdin)) { 
     // remove the \n character 
     input[strlen (input) - 1] = '\0'; 
     command = (char *)malloc (strlen (input) + 19); 
     sprintf (command, "f=simple(diff(%s,x))", input); 

     // execute the `diff` command on the user input expression 
     engEvalString (engine, command); 

     // the MATLAB engine does not understand the Symbolic Toolbox 
     // therefore you have to convert the output expression into 
     // some textual form (ccode,fortran,matlabFunction,latex) 
     engEvalString (engine, "fstr=ccode(f)"); 
     f = engGetVariable (engine, "fstr"); 
     output = mxGetChars (f); 

     // the expression is prefixed with some left-hand line (eg, "t0=") 
     // so, discard everything to the left of the =, and display just 
     // the derivative 
     for (i = 0; output[i] != '='; i++); 
     i++; // skip the = 

     // `mxChar` is a 16-bit character, and `printf ("%ls")` is giving 
     // me errors, so go through the string one character at a time, until 
     // the semicolon is found (it is C-code), ignoring non-printable 
     // characters along the way. 
     for (; output[i] != ';'; i++) { 
      if (isgraph (output[i])) { 
       putchar (output[i]); 
      } 
     } 
     putchar ('\n'); 
     printf (">> "); getline (&input, &input_size, stdin); 
    } 

    printf ("exiting...\n"); 
    engClose (engine); 
    return EXIT_SUCCESS; 
} 

Si vous avez besoin d'utiliser l'expression, au lieu de simplement l'écho, vous devrez écrire votre propre analyseur. Mais puisque c'est une simple expression C (avec les fonctions math.h), c'est assez trivial.

Et voici mon Makefile, rien d'extraordinaire ... n'oubliez pas de définir vos chemins de manière appropriée.

CC=gcc 
CFLAGS=-O0 -g -Wall -I$(MATLAB_DIR)/extern/include 
LDFLAGS=-L$(MATLAB_DIR)/bin/glnxa64 -leng -lmx -lmat -lut -licudata -licuuc -licui18n -licuio -lhdf5 
MATLAB_DIR=/opt/matlab/2008a 

%.o: %.c 
    $(CC) $(CFLAGS) -c $< -o [email protected] 

diff_test: diff_test.o 
    $(CC) $< -o [email protected] $(LDFLAGS) 

Et enfin une démonstration rapide:

# ./diff_test 
>> sin(x) 
cos(x) 
>> 2*x^2*tan(x) 
2.0*x*(2.0*tan(x)+x+x*pow(tan(x),2.0)) 
>> log(x^2) 
2.0/x 
>> ^D 
exiting...