blob: 358c05f5b314ece5ad45bd81f4aa71cdc594dd8b (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Chapter 4
//Example 4-2
//ProbOnLowerThresholdVoltage
//Page 91
clear;clc;
//Given
Vsat = -13;//Saturation Voltage
R1 = 1000; R2 = 100 ; //Load resistances
Vlt = (R2/(R1*R2))*Vsat;
printf("\n\n Value of Lower Threshold Voltage = %.6f V \n\n",Vlt)
|