Plot Stiffness of Unidirectional Composite in Polar Coordinate System

4 ビュー (過去 30 日間)
Julien Trekel
Julien Trekel 2022 年 12 月 26 日
コメント済み: Julien Trekel 2023 年 1 月 6 日
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.

採用された回答

J. Alex Lee
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 ExchangePolar Plots についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by