blob: ee2344d28497b0580e9cd61fd0a50e1d26c4e21f (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Exa 3.1
clc;
clear;
close;
//given data :
E=10;//in V/m
ETA_o=120*%pi;//Constant
H=E/ETA_o;//in A/m
disp(H,"The Magnetic Field Strength in A/m : ");
//Note : Answer is wrong in the book.
|