blob: fb443d3c72c50f8a0692fcc09aa4b5658e964eb0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Chapter 4
//Example 4-1
//ProbOnThresholdVoltage
//Page 90
clear;clc;
//Given
Vsat = 14;//Saturation Voltage
R1 = 1000; R2 = 100 ; //Load resistances
Vut = (R2/(R1*R2))*Vsat;
printf("\n\n Value of Upper Threshold Voltage = %.6f V \n\n",Vut)
|