blob: fbec264ed3085056a172b39c50a759b39dc2dd13 (
plain)
1
2
3
4
5
|
clc;
fe=5; //focal length in cm
D=25; //distance od distinct vision in cm
mo=30/(1+(D/fe)); //calculating magnification of objective lens
disp(mo,"Magnification produced by objective lens = "); //displaying result
|