Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
could anybody help me how can I draw one complex number through a variable which is integers in (-pi, pi) interval.
조회 수: 1 (최근 30일)
이전 댓글 표시
I have a complex number and I want to graph this number according to variable integer.
댓글 수: 1
답변 (1개)
Azzi Abdelmalek
2013년 11월 24일
If you want to represent a complex number graphically
a=1+2*i
scatter(real(a),imag(a))
댓글 수: 2
Azzi Abdelmalek
2013년 11월 24일
a=-pi:0.01:pi
z=25+j*tan (2*pi*a/0.3)
scatter(25*ones(size(a)),tan(2*pi*a/0.3))
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!