blob: 6c25c9c093c7adbc3d67b24465599147a4e5121d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clc
//
//
//
//Variable declaration
E0=8.86*10**-12
mu0=4*3.14*10**-7
H=1
//Calculations
E=H*(sqrt(mu0/E0))
//Result
printf("\n The Magnitude of E for a plane wave in free space is %3.1f ",E)
|