Output is giving me Empty sym: 0-by-1

2 ビュー (過去 30 日間)
준형 박
준형 박 2022 年 9 月 7 日
編集済み: Torsten 2022 年 9 月 7 日
f=1995.26;
z=71440;
seta=-77.04;
syms c R;
eqns = [ seta - atan( 1 / ( -2 * pi * f * c * R )) == 0, z^2 - 1 / ((R)^2 + ( 2 * pi * f * c )^2 ) == 0];
vars = [c R];
[solc, solR] = vpasolve(eqns,vars)
I'm trying to solve for the equations, but I'm getting the "Empty sym: 0-by-1" output, and I'm unsure why. I don't know why this is being outputted. i want to get c and R.

採用された回答

Torsten
Torsten 2022 年 9 月 7 日
編集済み: Torsten 2022 年 9 月 7 日
f=1995.26;
z=71440;
seta=-77.04;
syms c R;
eqns = [ tand(seta) + 1 / ( 2 * pi * f * c * R ) == 0, z^2 - 1 / (R^2 + ( 2 * pi * f * c )^2 ) == 0];
vars = [c R];
[solc, solR] = vpasolve(eqns,vars)
solc = 
solR = 

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFormula Manipulation and Simplification についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by