blob: 9d67eeac648eac58080457b84273fe5d777c5c36 (
plain)
1
2
3
4
5
6
7
|
//Example 24_2
clc();
clear;
//To find by how much does thickness of air gap increases
lamda=589 //units in nm
gap=round(lamda/2) //units in nm
printf("The thickness of air gap increases by=%d nm",gap)
|