blob: 46d36c1875d89db89c9d356aa488a4c114976f5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Chapter 1
//Example 1.13
//Page 31
clear;
clc;
TF=5;
Temp_Res=0.2;
//Calculation of required voltage resolution
printf("The temperature change of 0.2 degree celcius will result in a voltage change of = %.1f mV",TF*Temp_Res);
|