3D plot of a complex numer using cumsum

1 visualización (últimos 30 días)
SUBHAJIT KAR
SUBHAJIT KAR el 8 de Mayo de 2020
Comentada: Ameer Hamza el 8 de Mayo de 2020
I have a sequence of imazinary numbers e.g 1+3i, 1.5+0.7i, 3+0.5i............Now I want to plot sum of real part of sum on x axis, imaginary part of sum in y axis and cummulative sum in z axis. How it can be done? The expected image is attached.

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 8 de Mayo de 2020
Editada: Ameer Hamza el 8 de Mayo de 2020
See this example
x = randn(1,1000)*1 + 1i*randn(1,1000)*1; % randomly generated complex numbers
y = cumsum(x);
plot3(real(y), imag(y), 1:numel(x), 'LineWidth', 1)
grid on
  2 comentarios
SUBHAJIT KAR
SUBHAJIT KAR el 8 de Mayo de 2020
Thaks a lot Ameer Hamza.
Ameer Hamza
Ameer Hamza el 8 de Mayo de 2020
I am glad to be of help.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by