Borrar filtros
Borrar filtros

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

2 visualizaciones (últimos 30 días)
Sadiq
Sadiq el 29 de Abr. de 2023
Comentada: Sadiq el 29 de Abr. de 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)

Respuesta aceptada

Walter Roberson
Walter Roberson el 29 de Abr. de 2023
  1 comentario
Sadiq
Sadiq el 29 de Abr. de 2023
Thank you very much dear Walter Roberson for your kind response. Indeed it works now.

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by