summaryrefslogtreecommitdiff
path: root/2.3-1/tests/unit_tests/test100_recursivefunctions/scilabcode/mainfunction.sci
blob: d1dd1dbd290c1b243259f45f2a130619024f778f (plain)
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
56
57
//SCI2C: DEFAULT_PRECISION= FLOAT
function mainfunction()

// ---------------------------------------
// --- Initialization of the operands. ---
// ---------------------------------------
powerfactor = 3;
disp('Power Factor: ');
disp(powerfactor)

s1 = 2;
disp('Input Scalar Value');
disp(s1)

V1 = 1:3;
V2 = 1:2;
V1tr = V1';

M1 = V1tr * V2;
disp('Input Matrix Value');
disp(M1)

// -----------------------
// --- Compute powers. ---
// -----------------------
// --- Iterative/Scalar. ---
outs1It = IterativePower(s1,powerfactor);
disp('Output Scalar Value Iterative');
disp(outs1It);

// --- Iterative/Matrix. ---
outM1It = IterativePower(M1,powerfactor);
disp('Output Matrix Iterative');
disp(outM1It);

// --- Recursive/Scalar. ---
outs1Re = RecursivePower(s1,powerfactor);
disp('Output Scalar Value Recursive');
disp(outs1Re);

// --- Recursive/Matrix. ---
outM1Re = RecursivePower(M1,powerfactor);
disp('Output Matrix Recursive');
disp(outM1Re);

//~ // --- Solution/Scalar. ---
//~ outs1So = s1.^powerfactor;
//~ disp('Output Scalar Value Solution');
//~ disp(outs1So);

//~ // --- Solution/Matrix. ---
//~ outM1So = M1.^powerfactor;
//~ disp('Output Matrix Value Solution');
//~ disp(outM1So);

endfunction