#include "stack-c.h"Include dependency graph for ext7c.c:

Go to the source code of this file.
Functions | |
| int | ext7c (double *a, double *b) |
| int ext7c | ( | double * | a, | |
| double * | b | |||
| ) |
Definition at line 16 of file ext7c.c.
References c1, str, strl, WriteMatrix, and WriteString.
00017 { 00018 static int c1 = 1; 00019 static int c3 = 3; 00020 static char str[] ="test"; 00021 int strl; 00022 00023 double c[3]; 00024 int k=0; 00025 for (k = 0; k < 3; k++) c[k] = a[k] + b[k] * 2.; 00027 WriteMatrix("c",&c1,&c3,c); 00029 strl=strlen(str); 00030 /* Creating the Scilab variable d from str */ 00031 WriteString("d", &strl, str); 00032 return(0); 00033 }
1.5.1