blob: 080efe3d9221bbdacf2fb92fa16df4dd102fe63a (
plain)
1
2
3
4
5
6
7
8
|
//Example 2_15
clc();
clear;
//To find the highest order that ca be seen
n=5906*10^2 //units in line/cm
lamda=600*10^-9 //units in cm
m=1/(n*lamda)
printf("Maximum order that can be seen is %d",m)
|