Plot Stiffness of Unidirectional Composite in Polar Coordinate System
조회 수: 1 (최근 30일)
이전 댓글 표시
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.![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1243422/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1243422/image.png)
댓글 수: 0
채택된 답변
J. Alex Lee
2023년 1월 3일
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);
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Polar Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!