Example: Function call: exp_eut_ni(0.05,matrix_7,matrix_8).Parameter and
matrix_7:
x1 |
x2 |
x3 |
x4 |
scenario_benchmark |
1 |
4 |
8 |
3 |
-2 |
at point_1:
component_name |
value |
x1 x2 x3 x4 |
1 1 1 1 |
MATLAB code (.\Aorda\PSG\MATLAB\Examples\Func_value_exp_eut_ni.m) for function calculation:
%Calculation of functions with PSG Subroutine 'functionvalue'
%Define data:
H1 = [1 4 8 3];
header_1 = {'x1', 'x2', 'x3', 'x4'};
c1 = -2;
H2 = [11 3 2 0];
header_2 = {'x1', 'x2', 'x3', 'x4'};
c2 = 9;
a = [1;1;1;1];
%Calculate exp_eut_ni function with parameter 0.05 at point 'a':
val1 = functionvalue('exp_eut_ni', 0.05, {H1 ,H2}, {c1 ,c2}, {[] ,[]}, a);
%Display function value:
disp(sprintf('functionvalue = %g', val1));
%=======================================================================
%Calculation of functions with PSG Subroutine 'mpsg_function_value'
%Create the PSG matrix 'matrix_1'(structure containing header and matrix body) and pack it to structure 'iargstruc_arr':
iargstruc_arr(1) = matrix_pack('matrix_1', H1, [], c1, []);
%Create the PSG matrix 'matrix_2'(structure containing header and matrix body) and pack it to structure 'iargstruc_arr':
iargstruc_arr(2) = matrix_pack('matrix_2', H2, [], c2, []);
%Create the PSG point 'point_1'(structure containing header and matrix body) and pack it to structure 'iargstruc_arr':
iargstruc_arr(3) = point_pack('point_1', a, []);
%Calculate exp_eut_ni function with parameter 0.05 at point 'point_1':
val2 = mpsg_function_value('exp_eut_ni(0.05,matrix_1,matrix_2)','point_1',iargstruc_arr);
%Display function value:
disp(sprintf('mpsg_function_value = %g', val2));
Program output:
functionvalue = -0.419476
mpsg_function_value = -0.419476