what is the relationship between R and R1 and R3 for R.cos(wt+β​)=R1.cos(w​t+β)+R3.co​s(3wt+3β)

1 次查看(过去 30 天)
With R =squrt(R1^2+R3^2) for R.cos(wt+β)=R1.cos(wt+β)+R3.cos(wt+β)

回答(1 个)

Walter Roberson
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])
Warning: Possibly spurious solutions.
sol = struct with fields:
R1: [2×1 sym] R3: [2×1 sym]
sol.R1
ans = 
sol.R3
ans = 
So the relationship is that R1 = R and R3 = 0, OR R1 = 0 and R3 = R

类别

Help CenterFile Exchange 中查找有关 Calculus 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by