how to write this code ?

1 Ansicht (letzte 30 Tage)
ahmed nasser
ahmed nasser am 9 Apr. 2022
Kommentiert: Sam Chak am 9 Apr. 2022
  2 Kommentare
Walter Roberson
Walter Roberson am 9 Apr. 2022
What code?
ahmed nasser
ahmed nasser am 9 Apr. 2022
how to make this as a code on matlap ?

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Sam Chak
Sam Chak am 9 Apr. 2022
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 Kommentare
ahmed nasser
ahmed nasser am 9 Apr. 2022
@Sam Chak Thank you very much ..Mr. Sam
Sam Chak
Sam Chak am 9 Apr. 2022
You are welcome. Take your time to explore MATLAB.

Melden Sie sich an, um zu kommentieren.


Torsten
Torsten am 9 Apr. 2022
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 Kommentar
ahmed nasser
ahmed nasser am 9 Apr. 2022
@Torsten I want an initial code that deduces the third voltage after reading from the sensors

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by