how to solve and plot complex equation

1 回表示 (過去 30 日間)
Heather
Heather 2024 年 2 月 12 日
編集済み: Walter Roberson 2024 年 2 月 12 日
Trying to plot the bottom equation where x is 0-180 degrees. I believe the sin within the [] of the sin is where I'm messing up.
a=(b*Pi*sin(x))/c
b and c are constants
x=0-180 degrees
y=(sin^2(a))/a^2

採用された回答

VBBV
VBBV 2024 年 2 月 12 日
b = 3; c = 4;
x=0:180;
a=b*pi*sin(deg2rad(x))/c;
y=(sin(a).^2)./a.^2;
plot(x,y)
  1 件のコメント
Heather
Heather 2024 年 2 月 12 日
Thank you for the deg2rad part!

サインインしてコメントする。

その他の回答 (1 件)

Austin M. Weber
Austin M. Weber 2024 年 2 月 12 日
編集済み: Austin M. Weber 2024 年 2 月 12 日
A couple of things: pi needs to be lowercase and you need to use .*, ./, and .^ when doing element-wise operations on vectors or matrices. I hope this helps!
a = 2;
b = 3;
c = 4;
x=0:180;
a=(b*pi*sin(x)) ./c;
y=(sin(a).^2) ./ a.^2;
plot(x,y)
  1 件のコメント
Heather
Heather 2024 年 2 月 12 日
Sorry that wasn’t my exact code above, but you fixed my issue anyways. I did have the P capital and I had a missing (). Thank you so much, this is my first experience with matlab and it’s been years since I used Mathematica.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMathematics についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by