simple complex plot of a few points
    5 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
All i want to do is plot a few points on a complex plot aka the S Plane
If i want to plot a single point at say -2 + 2*sqrt(3)*j how would i go about doing such a thing.
0 comentarios
Respuestas (1)
  KSSV
      
      
 el 22 de Nov. de 2016
        
      Editada: KSSV
      
      
 el 22 de Nov. de 2016
  
      z = -2 + 2*sqrt(3)*i ;
 plot(z,'.r') ;
or
plot(real(z),imag(z),'.r') ;
5 comentarios
  KSSV
      
      
 el 22 de Nov. de 2016
				    plot(real(z),imag(z),'.r') ; 
    xlabel('Real part')
    ylabel('Imaginary part')x
  Star Strider
      
      
 el 22 de Nov. de 2016
				‘i need the y axis to actually show the dang i or j’
See the documentation for text.
Ver también
Categorías
				Más información sobre Annotations 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!


