フィルターのクリア

Finding solution of a complex trig equation

1 回表示 (過去 30 日間)
Naveen Ramesh
Naveen Ramesh 2013 年 4 月 29 日
Hi guys, I have this problem wherein there are 3 variables, namely 'beta', 'delta_beta' and 's'. I ll have to plot the graph between s and beta and then between s and delta_beta. And i also need to find the minum value of both. I have this complex trig equation that goes like this,
acos((u/R)*sin(beta + delta_beta)) = asin((s - (u*cos(beta + delta_beta)))/R);
In this equation, u and R are constants and s is defined as
s=0:0.1:35;
I have the values of beta from a previous equation that I also have to input into the above equation to get the values of delta_beta and finally plot it.
The problem that I am facing is that Matlab is not able to solve these equations and hence i am not able to get the plots. I dont know what the problem is and I ll be really grateful if someone could offer me a solution. and as always, thanks a ton.. !!

採用された回答

Walter Roberson
Walter Roberson 2013 年 4 月 29 日
Two related solutions:
atan2((-R^4+(2*u^2+2*s^2)*R^2-(s-u)^2*(s+u)^2)^(1/2)/(u*s), (u^2+s^2-R^2)/(u*s))-beta
atan2(-(-R^4+(2*u^2+2*s^2)*R^2-(s-u)^2*(s+u)^2)^(1/2)/(u*s), (u^2+s^2-R^2)/(u*s))-beta
That is, the two first arguments are negatives of each other.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by