Filter löschen
Filter löschen

change appearing values one X- axis only

7 Ansichten (letzte 30 Tage)
Dam
Dam am 15 Aug. 2012
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

Akzeptierte Antwort

Image Analyst
Image Analyst am 16 Aug. 2012
Bearbeitet: Image Analyst am 16 Aug. 2012
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.

Weitere Antworten (1)

Azzi Abdelmalek
Azzi Abdelmalek am 15 Aug. 2012
Bearbeitet: Azzi Abdelmalek am 15 Aug. 2012
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)

Community Treasure Hunt

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

Start Hunting!

Translated by