blob: d09bed82de8bd7f1f2f869d8299000ae2109e285 (
plain)
1
2
3
4
5
6
7
8
9
|
clc;
Vin=[0.002 0.00188]; //Volt
Av=500;
Vout1=Av*Vin(1,1); //Volt
Vout2=Av*Vin(1,2); //Volt
disp('V',Vout1,"Vout1=");//The answers vary due to round off error
disp('mV',Vout2*1000,"Vout2=");//The answers vary due to round off error
|