Please help me with this qustion

syms v1 vo
eqn1 = v1/10 + (v1-60/20) + v1-5vo/20 ==0
vo = 4/10 + v1
[vo]=solve([v1,vo], [vo])

1 Comment

Stephen23
Stephen23 on 16 Oct 2023
Edited: Stephen23 on 16 Oct 2023
@mustafa: I closed lots of your questions that you just spammed onto this forum. None of them had your attempt or even your own question, you just uploaded screenshots of your homework question. Most people on this forum do not just do other people's homework for them (this is called cheating, and yes your teachers also know how to find this forum).
If you want help then show us your attempt and ask your own question:

Sign in to comment.

Answers (1)

Torsten
Torsten on 15 Oct 2023
Edited: Torsten on 15 Oct 2023
syms v1
vo = 4/10 + v1
vo = 
eqn1 = v1/10 + (v1-60/20) + v1-5*vo/20 ==0
eqn1 = 
v1_sol=solve(eqn1, v1)
v1_sol = 
vo_sol = subs(vo,v1,v1_sol)
vo_sol = 

Categories

Asked:

on 15 Oct 2023

Edited:

on 16 Oct 2023

Community Treasure Hunt

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

Start Hunting!