From 097f7bafa0f41b41f68ef0c09ed938ccb5ef359f Mon Sep 17 00:00:00 2001 From: Lht97 Date: Sat, 7 Dec 2024 16:53:24 +0800 Subject: [PATCH] Make the number --- tests/tuning/plot_parameters.m | 4 ++-- tests/tuning/tuning_script.m | 4 ++-- tests/tuning/tuning_script_tmp.m | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/tuning/plot_parameters.m b/tests/tuning/plot_parameters.m index 9cca69fc..c6304e50 100644 --- a/tests/tuning/plot_parameters.m +++ b/tests/tuning/plot_parameters.m @@ -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) diff --git a/tests/tuning/tuning_script.m b/tests/tuning/tuning_script.m index 4122020e..c33268c8 100644 --- a/tests/tuning/tuning_script.m +++ b/tests/tuning/tuning_script.m @@ -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]; diff --git a/tests/tuning/tuning_script_tmp.m b/tests/tuning/tuning_script_tmp.m index ba6b72ee..16d46903 100644 --- a/tests/tuning/tuning_script_tmp.m +++ b/tests/tuning/tuning_script_tmp.m @@ -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";