blob: dce2462f2792d6310412ae4e7ab4eec77806f804 (
plain)
1
2
3
4
5
6
7
8
|
//Example 5_13
clc();
clear;
//To find the Maximum possible diffraction order
lamda=1.5 //units in A.U
d=1.6 //units in A.U
n=(2*d)/lamda
printf("Maximum possible diffraction order = %.0f",n)
|