how to write this code ?

回答(2 个)

Looks like the Kirchhoff's voltage law.
Are you looking for something like this?
syms Vab Vbc Vca
eqn = Vab + Vbc + Vca == 0
S = solve(eqn, Vca)

5 个评论

@Sam Chak yes.this what i'm looking for
@Sam Chak I want an initial code that deduces the third voltage after reading from the sensors
Are you looking for something like the user input?
prompt1 = input('What is the value of Vab? ');
Vab = prompt1;
prompt2 = input('What is the value of Vbc? ');
Vbc = prompt2;
Vca = - (Vab + Vbc)
@Sam Chak Thank you very much ..Mr. Sam
You are welcome. Take your time to explore MATLAB.

请先登录,再进行评论。

What is the code supposed to do with the three V-values ?
You can write
syms V_ab V_bc V_ca
eqn = V_ab + V_bc + V_ca == 0
result = solve(eqn,V_ca)
And now ?

1 个评论

@Torsten I want an initial code that deduces the third voltage after reading from the sensors

请先登录,再进行评论。

类别

Community Treasure Hunt

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

Start Hunting!

Translated by