tbpsg_point_data function gets data of all points for solved optimization problem.
Syntax
[output] = tbpsg_point_data(solution_str, outargstruc_arr)
Description
[output] = tbpsg_point_data(solution_str, outargstruc_arr) returns the data of all points of an optimization problem extracted from the solution reports solution_str and outargstruc_arr.
Input Arguments
solution_str |
string with solution report; |
outargstruc_arr |
array of output PSG data structures; |
Output Arguments
output |
cell array of points data. |
Example
CVaR problem is defined in section Quick Start with PSG Toolbox.
Open PSG Toolbox:
>> tbpsg_toolbox
Load in PSG Toolbox problem from file .\Aorda\PSG\MATLAB\Examples\Toolbox\problem_cvar.mat
Open in PSG Toolbox menu "Save to Workspace" and save problem statement and toolbox structure to Workspace variables problem_statement and toolboxstruc_arr.
Optimize problem using tbpsg_run:
[solution_str,outargstruc_arr]=tbpsg_run(problem_statement, toolboxstruc_arr);
Extract data of optimal point from the solution reports solution_str and outargstruc_arr:
>> output = tbpsg_point_data(solution_str, outargstruc_arr)
output =
[1x4 double] [1x2 double] [1x2 double] [1x2 double]
>> output{1}
ans =
0 0.6000 0.1900 0.2100
>> output{2}
ans =
4.5000 1.0000
>> output{3}
ans =
1.0e-015 *
0 -0.4441
>> output{4}
ans =
3.7037 -22.1111
See also
tbpsg_isoptimal, tbpsg_objective, tbpsg_constraint, tbpsg_function, tbpsg_time, tbpsg_point_vars, tbpsg_matrix_data, tbpsg_matrix_vars, tbpsg_vector_data