Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
could anybody help me how can I draw one complex number through a variable which is integers in (-pi, pi) interval.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I have a complex number and I want to graph this number according to variable integer.
1 Commento
Risposte (1)
Azzi Abdelmalek
il 24 Nov 2013
If you want to represent a complex number graphically
a=1+2*i
scatter(real(a),imag(a))
2 Commenti
Azzi Abdelmalek
il 24 Nov 2013
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))
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!