필터 지우기
필터 지우기

plotting lines

조회 수: 2 (최근 30일)
Muhammad Usman
Muhammad Usman 2011년 12월 11일
i have a simple ques that if i have z-plane having x and y axes,and i express z=x+i*y,and x if fixed let say 5 any y=0:10 then how can i plot this thing,please guide me,i m waiting for reply
  댓글 수: 1
Muhammad Usman
Muhammad Usman 2011년 12월 12일
yes i is imaginaryunit

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

답변 (3개)

bym
bym 2011년 12월 11일
y = 1:10;
x=5*ones(size(y));
z=x+i*y;
plot(real(z),imag(z))
  댓글 수: 1
Walter Roberson
Walter Roberson 2011년 12월 11일
That will not be able to show the values of x and y on the axes.

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


Mohsen  Davarynejad
Mohsen Davarynejad 2011년 12월 11일
y = [0:.1:10]
plot(5,y)
xlabel('Re')
ylabel('Im')
  댓글 수: 3
Mohsen  Davarynejad
Mohsen Davarynejad 2011년 12월 11일
If z = x + yi, then x is the "real part" and y is the "imaginary part". When x is a constant and y is vector, then you will have line in the complex plane. No?
http://en.wikipedia.org/wiki/Imaginary_number
Walter Roberson
Walter Roberson 2011년 12월 12일
z might be a line in the complex plane, but plot(5,y) does not involve z at all, and plot(5,z) would be refused because it is not allowed to plot complex data except through plot(z) which in turn is the same as plot(real(z),imag(z)) -- real vs imaginary.

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


Walter Roberson
Walter Roberson 2011년 12월 11일
y = 0:10;
x = 5 * ones(size(y));
z = x + i * y;
Now, if "i" were a real-valued constant, you would then use
plot3(x, y, z)
However, "i" is the complex constant, so you have a line in complex space, and there is no way to draw that in one step. Instead you would need to use something like,
plot3(x, y, real(z), 'r', x, y, imag(z), 'g', x, y, abs(z), 'b')
or perhaps plot 3 separate images using subplot()
  댓글 수: 1
Muhammad Usman
Muhammad Usman 2011년 12월 12일
i just tried your code where "i" is complex constant...now i want to ask that how can a draw a rectangle shape and color it on the axes,i.e.let x=0:5 and y=0:7 and these lines meet at(5,7),so guide me.

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

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by