diff options
Diffstat (limited to '1964/CH4/EX4.9')
-rwxr-xr-x | 1964/CH4/EX4.9/ex4_9.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1964/CH4/EX4.9/ex4_9.sce b/1964/CH4/EX4.9/ex4_9.sce new file mode 100755 index 000000000..efc93d898 --- /dev/null +++ b/1964/CH4/EX4.9/ex4_9.sce @@ -0,0 +1,19 @@ +//Chapter-4, Example 4.9, Page 137
+//=============================================================================
+clc
+clear
+//CALCULATIONS
+//for subdivision a
+funcprot(0);
+max=40;
+rms=max/sqrt(2);
+mprintf("max and rms values are %d units and %2.2f units respectively\n",max,rms);
+//for subdivision b
+//max=A+B
+//rms=(A+B)/sqrt(2)
+//for subdivision c
+max1=sqrt(((10)^2)+((17.3)^2));
+rms1=max1/sqrt(2);
+mprintf("max and rms values are %2.2f units and %2.2f units respectively",max1,rms1);
+//note:in textbook for sub div (c) square root has not taken for maximum value computed
+//=================================END OF PROGRAM==============================
|