Skip to content

Commit

Permalink
Make the number
Browse files Browse the repository at this point in the history
  • Loading branch information
Lht97 committed Dec 7, 2024
1 parent 9e572f2 commit 097f7ba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions tests/tuning/plot_parameters.m
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,12 @@ function plot_parameters(parameters, solver, competitor, options)
[~, idx] = maxk(perfs(:), 10); % Find the indices of the top 10 maximum values

% Set larger marker size
markerSize = 10; % Increase marker size
markerSize = 12; % Increase marker size
plot3(p1(idx), p2(idx), perfs(idx), 'o', 'MarkerSize', markerSize, ...
'MarkerFaceColor', 'k', 'MarkerEdgeColor', 'k'); % Black solid circle

% Set larger font size for the labels
labelFontSize = 10; % Increase font size for the labels
labelFontSize = 12; % Increase font size for the labels

% Add text labels for the top 10 points at the center of the markers
for i = 1:length(idx)
Expand Down
4 changes: 2 additions & 2 deletions tests/tuning/tuning_script.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
competitor = "cbds";

options = struct();
options.mindim = 2;
options.maxdim = 2;
options.mindim = 6;
options.maxdim = 50;
options.test_type = "s2mpj";
options.tau_indices = 1:4;
options.tau_weights = [0.3, 0.3, 0.3, 0.1];
Expand Down
4 changes: 2 additions & 2 deletions tests/tuning/tuning_script_tmp.m
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
plot_parameters(parameters, solver, competitor, options);


function x = curve_weights(x)
x = 1;
function w = plot_weights(x)
w = 1;
end

% options.feature = "noise_1e-3_no_rotation";
Expand Down

0 comments on commit 097f7ba

Please sign in to comment.