フィルターのクリア

How to set x axis in a plot?

1 回表示 (過去 30 日間)
Fabian Moreno
Fabian Moreno 2021 年 11 月 28 日
コメント済み: Fabian Moreno 2021 年 11 月 28 日
Hello, I would like to know if is possible to set the X- axis like the plot that I loaded. I make the x-axis in pain just as an example of what I would like to do.

採用された回答

Chunru
Chunru 2021 年 11 月 28 日
編集済み: Chunru 2021 年 11 月 28 日
subplot(6,1,1:5); imagesc([1 8], [14, 22], randi(100,100));
subplot(8,1,8);
imagesc([1 8], 1, [1 2 2 2 2 2 2 3 3]);
set(gca, 'XTick', [], 'YTick', [])
text(4, 1, 'G3');
  1 件のコメント
Fabian Moreno
Fabian Moreno 2021 年 11 月 28 日
Thank you!

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

その他の回答 (1 件)

Image Analyst
Image Analyst 2021 年 11 月 28 日
rgbImage = imread('peppers.png');
imshow(flipud(rgbImage), 'XData', 1:8, 'YData', 14:22);
axis('on', 'xy')

カテゴリ

Help Center および File ExchangeAxis Labels についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by