blob: c34b538740527b2c29cacbf96f3222bb1d25df73 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Exa 1.1
clc;
clear;
close;
//given data :
E=4;//in V/m
Eta=120*%pi;//constant
//Formula : E/H=Eta
H=E/Eta;//in A/m
disp(H,"Strength of magnetic field in free space in A/m : ");
|