blob: b56ca7bc7e278205e9e0860ec660e4cd04329270 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clear//
//Variables
LR = 1.4 //Line regulation (in micro-volt per volt)
dVS = 10 //Change in source voltage (in volts)
//Calculation
dVL = LR * dVS //Change in output voltage (in micro-volts)
//Result
printf("\n The change in output voltage is %0.3f micro-volt.",dVL)
|