diff options
Diffstat (limited to '3363/CH17/EX17.5/Ex17_5.sce')
-rwxr-xr-x | 3363/CH17/EX17.5/Ex17_5.sce | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/3363/CH17/EX17.5/Ex17_5.sce b/3363/CH17/EX17.5/Ex17_5.sce new file mode 100755 index 000000000..0d7550639 --- /dev/null +++ b/3363/CH17/EX17.5/Ex17_5.sce @@ -0,0 +1,38 @@ +//Example 17.5, page no 664 +clc; +Tz=(1-1)/2 +//For K+ +Q=1 +B=0 +S=1 +Tz=1-0.5 +printf("The value of Tz for K+ is %f \n",Tz) + +//For K- +Q=-1 +B=0 +S=-1 +Tz=-1+0.5 +printf("The value of Tz for K- is %f\n",Tz) + + +//For Ko +Q=0 +B=0 +S=1 +Tz=-0-0.5 +printf("The value of Tz for Ko is %f \n",Tz) + + +//For Ko_dash +Tz=0+0.5 +printf("The value of Tz for Ko- is %f \n",Tz) + + + + + + + + + |