Plot Stiffness of Unidirectional Composite in Polar Coordinate System
    10 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Julien Trekel
 el 26 de Dic. de 2022
  
    
    
    
    
    Comentada: Julien Trekel
 el 6 de En. de 2023
            I would like to recreate the following diagramm in Matlab. Throught the funktion polarplot(theta,rho) I was already able to create the figure, but I lack the knowlege to fill in the correct inputs für theta and rho. Thanks for the help.

0 comentarios
Respuesta aceptada
  J. Alex Lee
      
 el 3 de En. de 2023
        theta and rho are respectively angle and radius...so for example
t = linspace(0,2*pi,500)';
r = cos(t).^4 + .5;
polarplot(t,r);
hold on
r = cos(t+pi/2).^4 + .5;
polarplot(t,r);
r = 0.5*cos(t-pi/4).^4 + 0.5*cos(t+pi/4).^4 + .0;
polarplot(t,r);
Más respuestas (0)
Ver también
Categorías
				Más información sobre Polar 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!


