Filter löschen
Filter löschen

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

3 Ansichten (letzte 30 Tage)
Sadiq
Sadiq am 29 Apr. 2023
Kommentiert: Sadiq am 29 Apr. 2023
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)

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 29 Apr. 2023
  1 Kommentar
Sadiq
Sadiq am 29 Apr. 2023
Thank you very much dear Walter Roberson for your kind response. Indeed it works now.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by