blob: 62ef3df30a851e10a27add476e98d758579c1627 (
plain)
1
2
3
4
5
6
7
8
|
//Example 2_23
clc();
clear;
//To calculate the possible order of spectra
N=5.095*10^3 //units in lines per inch
lemda=6000*10^-8 //units in cm
m=(1/N)/lemda
printf("The possible order of the spectra is %.0f",m)
|