blob: b67488fde26e9b7d1e7bfb09c88ac33bb029a43b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Exa 1.17
format('v',7);
clc;
clear;
close;
// Given data
R1=10;// in kohm
R2=150;// in kohm
R3=10;// in kohm
R4=300;// in kohm
V1= 1;// in V
V2= 2;// in V
Vo= [(1+R4/R2)*(R3*V1/(R1+R3))-(R4/R2)*V2];
disp(Vo,"Output voltage in volts is : ")
|