How I use quiver to plot 3+2i

3 views (last 30 days)
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?
Pascal Baur
Pascal Baur on 26 Mar 2022
sorry i mean zero point vector

Sign in to comment.

Accepted Answer

Mohammed Hamaidi
Mohammed Hamaidi on 26 Mar 2022
Just use:
quiver(3,2,1)
for any complex number c, use:
quiver(real(c),imag(c),1)

More Answers (0)

Categories

Find more on Vector Fields in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!