How I use quiver to plot 3+2i

My task:
Represent the number 3+2i as a zero vector in the complex plane using the quiver function.
Would be nice, if someone could help me.

2 Comments

Mohammed Hamaidi
Mohammed Hamaidi on 26 Mar 2022
Edited: Mohammed Hamaidi on 26 Mar 2022
What do you mean by zero vector?
You mean as vector?
sorry i mean zero point vector

Sign in to comment.

 Accepted Answer

Just use:
quiver(3,2,1)
for any complex number c, use:
quiver(real(c),imag(c),1)

More Answers (0)

Categories

Community Treasure Hunt

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

Start Hunting!