Borrar filtros
Borrar filtros

how to get complex plot img and real

3 visualizaciones (últimos 30 días)
Priyank Chauhan
Priyank Chauhan el 1 de Abr. de 2021
Comentada: Rik el 1 de Abr. de 2021
  2 comentarios
Rik
Rik el 1 de Abr. de 2021
What is your question?
Do you want to know how to write an anonymous? Do you want to know how to extract the real and imaginary components of complex numbers? Do you want to know how to plot data?
Priyank Chauhan
Priyank Chauhan el 1 de Abr. de 2021
how to get plot using this equation see attachment img plot

Iniciar sesión para comentar.

Respuestas (1)

KSSV
KSSV el 1 de Abr. de 2021
a = rand(10,1)+1i*rand(10,1) ; % complex number for demo
figure
plot(a) ; % this will plot real part vs complex part
The above is simliar to
plot(real(a),imag(a))
  6 comentarios
Priyank Chauhan
Priyank Chauhan el 1 de Abr. de 2021
bro my problem is how to get plot using this equation t(z) = z+1+2i , t(0) = 1+2i, t(2) = 3+2i, t(i) = 1+3i, t(2+i) = 3+3i.
Rik
Rik el 1 de Abr. de 2021
You can find guidelines for posting homework on this forum here. If you have trouble with Matlab basics you may consider doing the Onramp tutorial (which is provided for free by Mathworks). If your main issue is with understanding the underlying concept, you may consider re-reading the material you teacher provided and ask them for further clarification.

Iniciar sesión para comentar.

Categorías

Más información sobre 2-D and 3-D Plots 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