Why don't i get a vector for phi1?

1 回表示 (過去 30 日間)
Tobias Stach
Tobias Stach 2018 年 5 月 24 日
編集済み: Mischa Kim 2018 年 5 月 24 日
t = pi/2:0.01:2*pi+(pi/2);
phi1 = (a^2+a^2+d^2+2*a*d*cos(pi-t)-d^2)/(2*b*sqrt(a^2+d^2+2*a*d*cos(pi-t)));

採用された回答

Mischa Kim
Mischa Kim 2018 年 5 月 24 日
編集済み: Mischa Kim 2018 年 5 月 24 日
All constants need to be defined. Then use:
t = pi/2:0.01:2*pi+(pi/2);
phi1 = (a^2+a^2+d^2+2*a*d*cos(pi-t)-d^2)./(2*b*sqrt(a^2+d^2+2*a*d*cos(pi-t)));
plot(t, phi1)
t is a vector, therefore, you need to use the ./ operator.

その他の回答 (0 件)

タグ

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!