how to write this code?

3 visualizaciones (últimos 30 días)
Rihard
Rihard el 18 de Dic. de 2022
Comentada: Rihard el 18 de Dic. de 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 comentarios
Torsten
Torsten el 18 de Dic. de 2022
Editada: Torsten el 18 de Dic. de 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 el 18 de Dic. de 2022
Thank you very very much!!

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Line Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by