Example: Function call: var_comp_pos(0.7,matrix_1).Parameter = 0.7 and matrix_1:
x1 |
x2 |
x3 |
x4 |
1 |
4 |
8 |
3 |
at point_1:
component_name |
value |
x1 x2 x3 x4 |
1 1 1 1 |
MATLAB code (.\Aorda\PSG\MATLAB\Examples\Functions\Func_value_var_comp_pos.m) for function calculation:
%Define data:
H1 = [1 4 8 3];
a = [1;1;1;1];
alpha = 0.7;
%=======================================================================
%Calculation of function with PSG Subroutine 'functionvalue'
%Calculate var_comp_pos function with parameter 0.7 at point 'a':
val1 = functionvalue('var_comp_pos', alpha, H1, [], [], a);
%Display function value:
disp(sprintf('functionvalue = %g', val1));
%=======================================================================
%Calculation of function with PSG Subroutine 'tbpsg_function_value'
%Create the PSG matrix 'matrix_1'(structure containing header and matrix body) and pack it to structure 'toolboxstruc_arr':
toolboxstruc_arr(1) = tbpsg_matrix_pack('matrix_1', H1, [], [], []);
%Create the PSG point 'point_1'(structure containing header and matrix body) and pack it to structure 'toolboxstruc_arr':
toolboxstruc_arr(2) = tbpsg_point_pack('point_1', a, []);
%Create the PSG parameter 'parameter_alpha' and pack it to structure 'toolboxstruc_arr':
toolboxstruc_arr(3) = tbpsg_parameter_pack('parameter_alpha', alpha);
%Calculate var_comp_pos function with parameter 0.7 at point 'point_1':
val2 = tbpsg_function_value('var_comp_pos(parameter_alpha,matrix_1)','point_1',toolboxstruc_arr);
%Display function value:
disp(sprintf('tbpsg_function_value = %g', val2));
%=======================================================================
%Creation of User Subroutine for calculating function value
%User subroutine is similar to the 'functionvalue'
%Create problem statement:
problem_statement = sprintf('%s\n',...
'calculate',...
'Point: point_1',...
' var_comp_pos(parameter_alpha,matrix_1)',...
' ');
%Create Subroutine:
tbpsg_create_user_subroutine(problem_statement,toolboxstruc_arr,'.\','calculate_var_comp_pos');
%Uncomment section to call the user subroutine 'calculate_var_comp_pos':
%{
%Calculation of function with User Subroutine 'calculate_var_comp_pos':
[solution_str,outargstruc_arr] = calculate_var_comp_pos(H1,matrix_1_vars,a,point_1_vars,alpha);
%Extract function value from the solution report:
val = tbpsg_function_data(solution_str, outargstruc_arr);
%}
Program output:
functionvalue = 3.8
tbpsg_function_value = 3.8