could anyone help me to plot the graph with equal spacing of number with respect to x axis

조회 수: 10 (최근 30일)
I want to plot the graph with respect to x axis using the following (1,12,25,100,120). In the graph i should get only these 5 numbers with equal spacing. I tried with several commands like but none give me the result what i actually need.
Could anyone help me to solve the issue.

채택된 답변

Von Duesenberg
Von Duesenberg 2018년 3월 29일
xDat = [1,12,25,100,120];
dummyX = 1:length(xDat);
yDat = randperm(length(xDat));
plot(dummyX, yDat, 'ko');
ax = gca;
ax.XTick = dummyX;
ax.XTickLabel = xDat;

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by