1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// Copyright (C) 2019 - IIT Bombay - FOSSEE
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
// Author: Rupak Rokade
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
extern "C"
{
#include<Scierror.h>
#include<api_scilab.h>
#include <stdio.h>
#include "localization.h"
#include "mul.h"
static const char fname[] = "multiply";
int sci_multiply(scilabEnv env, int nin, scilabVar* in, int nopt, scilabOpt* opt, int nout, scilabVar* out)
{
double* in1 = NULL;
double* in2 = NULL;
double* out1 = NULL;
double ar[1];
if (nin < 2)
{
Scierror(77, _("%s: Wrong number of input argument(s): %d expected.\n"), fname, 2);
return 1;
}
if (nout != 1)
{
Scierror(77, _("%s: Wrong number of output argument(s): %d expected.\n"), fname, 1);
return 1;
}
scilab_getDoubleArray(env, in[0], &in1);
scilab_getDoubleArray(env, in[1], &in2);
mul(ar, in1[0],in2[0]);
out[0] = scilab_createDoubleMatrix2d(env, 1, 1, 0);
scilab_getDoubleArray(env, out[0], &out1);
out1[0] = ar[0];
return 0;
}
}
|