필터 지우기
필터 지우기

Draw a line and a plane at fixed ponit in 2d and 3d plot

조회 수: 2 (최근 30일)
joy
joy 2012년 11월 21일
Hello I have a 2d plot
where at vertical axis(Y) at a particular point say 0.0039 i want to draw a line parallel to X axis...
and in case of 3d plot I have to draw plane along vertical z axis at same point...
is matlab has any related function to do so....
actually what I want to do is http://s8.postimage.org/nyonm4hs5/fig.jpg in this figure i need to draw a line at 3.9*10-3 horizontally ,how to do this? regards
  댓글 수: 1
Jan
Jan 2012년 11월 21일
In 3D you need three coordinates to determine a plane. Does "plane along the Z axis" mean "perpendiculare to Z axis"? You cannot orient a plane along a line in 3D.

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

답변 (2개)

Azzi Abdelmalek
Azzi Abdelmalek 2012년 11월 21일
편집: Azzi Abdelmalek 2012년 11월 22일
x=0.0039
plot([-10 10],[x x])
  댓글 수: 5
Azzi Abdelmalek
Azzi Abdelmalek 2012년 11월 22일
편집: Azzi Abdelmalek 2012년 11월 22일
Ok Simon
x=0.0039
plot([[-10 10],[x x])
I was confused by "vertical axis(Y)"
Azzi Abdelmalek
Azzi Abdelmalek 2012년 11월 22일
Or use
y=0.0039
xlim=get(gca,'xlim')
plot(xlim,[y y])

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


Jan
Jan 2012년 11월 21일
How do you want to display the plane? An opaque SURF object will most likely hide all interesting details of the plot. What about a semi-transparent SURF object with an opaque border? Or a disc? Or a bunch of points?
  댓글 수: 1
joy
joy 2012년 11월 21일
I have prob of occurrence on z...a nd my data are along my x and y axis...I want to draw a plane or level at 0.0039 //there might be some point above this prob of occurrence and some shall be below of it..so that I could assume.......

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

카테고리

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