how to write this code?

3 visualizzazioni (ultimi 30 giorni)
Rihard
Rihard il 18 Dic 2022
Commentato: Rihard il 18 Dic 2022
Hey,
Can someone help me to write a code that that:
Writes the line of the complex plane formed by the point z when the complex number z^2 moves along the sides of the square whose vertices are located at the points -1-i, 2-i, 2+2*i and -1 + 2*i. In the same figure, write a line formed by points z^2, whose arcs are the same color as the corresponding side of the square.
I made the square but can`t figure out how to get the curved lines.
Thanks for the help!
  4 Commenti
Torsten
Torsten il 18 Dic 2022
Modificato: Torsten il 18 Dic 2022
You must square the sides of the square, not only its corner points:
z1_squared = z1.^2;
plot(real(z1_squared),imag(z1_squared))
Rihard
Rihard il 18 Dic 2022
Thank you very very much!!

Accedi per commentare.

Risposte (0)

Categorie

Scopri di più su Line Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by