change appearing values one X- axis only

8 次查看(过去 30 天)
Hi to all; when plotting in matlab, matlab is automatically giving the values on the X axis form 0 to 300 depending on the number (size) of data I plot (Y size); i want to change these values appearing on the X axis; let us say i want values from 100 to 200 to appear on the X axis ; How can i do so ?
Thank you for ur answer
regards

采纳的回答

Image Analyst
Image Analyst 2012-8-16
编辑:Image Analyst 2012-8-16
You mean like
xlim([100 200]);
That will set up the "viewport" of your plot. Maybe you're plotting stuff from 0 to 1000 but only points with x values of 100-200 will be seen in your plot and points outside there will be not visible.
Or do you want to keep the x data but just reassign the x tick labels? Let's say you have 300 time points as your x, and voltage as your y. But let's say that element 1 was at time 100 milliseconds, and element 300 represents 200 milliseconds. Well you can continue to plot all 300 data points and just stick new labels onto the tick marks. Following the example from the help:
set(gca,'XTickLabel',{'100 ms';'150 ms';'200 ms'});
to relabel 3 tick marks.

更多回答(1 个)

Azzi Abdelmalek
Azzi Abdelmalek 2012-8-15
编辑:Azzi Abdelmalek 2012-8-15
it seems that you are using
plot(y)
%example
y=sin(0:0.1:10);
plot(y); % x axis are from 1 to length(y)
% if i want it from 100 to 200
x=linspace(100,200,length(y))
figure;plot(x,y)

类别

Help CenterFile Exchange 中查找有关 Axis Labels 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by