Problem with origin and plotting axes

조회 수: 7 (최근 30일)
Tarjei
Tarjei 2011년 2월 10일
Hi, I've been having problems with the plotting axes when it comes to plotting 2D points in MatLab (r2010a).
On a simple test program like:
W=[[0 0]' [0 1]' [1 0]' [1 1]'];
for i=1:4;
plot(W(:,i));
end
The origin is translated to (0,1). I've of course tried all the "normal" ways of setting axes, but the problem is still there. Anyone had similar problems, or may know of some default variables I could change to solve this rather irritating time spender?
Thanks for any help!

채택된 답변

Brett Shoelson
Brett Shoelson 2011년 2월 10일
Is this what you're looking for?
>> x = [-0.5 0.5 0.5 -0.5];
>> y = [-0.5 -0.5 0.5 0.5];
>> plot(x,y,'ro')
>> axis([-1 1 -1 1]); %OR: set(gca,'xlim',[-1 1],'ylim',[-1 1])
Cheers,
Brett

추가 답변 (1개)

Davide Ferraro
Davide Ferraro 2011년 2월 10일
Your code is basically:
plot([1 1]');
and is represented by a line with first point(1,1) and second point (2,1) (giving only y values, the x are placed automatically incrementally from 1).
If you want to display also the (0,0) coordinate you can simply use the AXIS command:
axis([0 2 0 2])
  댓글 수: 1
Tarjei
Tarjei 2011년 2월 10일
Thanks for the answer, I see now that I didn't know about the automatic increment, but it is not exactly what I was looking for;
Lets say I want to display four corners of a square centered at the origin with side length 1.
I do not wish for it to be translated to start in (0,1).
Do you have any tricks?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Graphics Objects에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by