How to suppress the "1" from x-axis?

2 次查看(过去 30 天)
I want a figure between fitness vs PID gains. I get it but "1" is displayed on x-axis. How to suppress this "1" from x-axis? The required Mat file is hereby attached. The code is given below:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% By Star Strider on 19-10-2020-I used this one
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
clear all
close all
clc
load PIDGains
fitness2sn0=one;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Descending Order
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
fitness2sn0=sort(fitness2sn0,'descend');
figure
h1=boxplot([fitness2sn0].');
set(h1,{'linew'},{2})
grid
Ax = gca;
Ax.XLabel.String = '\bf PID Gains';
Ax.YLabel.String = '\bf fitness';
Ax.YScale = 'log';
Ax.YLim = [1E-7 1e-5];
title('\bf Fitness for Kp, Ki and Kd')
set(gca,'linew',2)

采纳的回答

Walter Roberson
Walter Roberson 2023-4-29

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 PID Controller Tuning 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by