what is the relationship between R and R1 and R3 for R.cos(wt+β)=R1.cos(wt+β)+R3.cos(3wt+3β)
1 回表示 (過去 30 日間)
古いコメントを表示
With R =squrt(R1^2+R3^2) for R.cos(wt+β)=R1.cos(wt+β)+R3.cos(wt+β)
2 件のコメント
Sam Chak
2024 年 3 月 29 日
@YOUSSEF El MOUSSATI, Has this question been resolved? If not, could you please provide constructive feedback and comments to guide further follow-up and discussion?
回答 (1 件)
Walter Roberson
2024 年 1 月 8 日
syms R R1 R3 w t beta
eqn1 = R == sqrt(R1^2 + R3^2);
eqn2 = R .* cos(w * t + beta) == R1 .* cos(w*t + beta) + R3 .* cos(w*t + beta);
sol = solve([eqn1, eqn2], [R1, R3])
sol.R1
sol.R3
So the relationship is that R1 = R and R3 = 0, OR R1 = 0 and R3 = R
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!