Clear Filters
Clear Filters

Removing Xaxis and Yaxis values

980 views (last 30 days)
Hey I have plotted a graph but I want to remove the values on the axis, I don't want the numbers to show

Accepted Answer

Chenchal
Chenchal on 3 Nov 2017
% code
x = rand(1,100);
plot(x);
set(gca,'XTick',[], 'YTick', [])
  3 Comments
Paulo Providencia
Paulo Providencia on 10 Mar 2023
I had to use xticklabels([])

Sign in to comment.

More Answers (0)

Categories

Find more on Labels and Annotations in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!