フィルターのクリア

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

3 ビュー (過去 30 日間)
Sadiq
Sadiq 2023 年 4 月 29 日
コメント済み: Sadiq 2023 年 4 月 29 日
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 日
  1 件のコメント
Sadiq
Sadiq 2023 年 4 月 29 日
Thank you very much dear Walter Roberson for your kind response. Indeed it works now.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangePID Controller Tuning についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by