diff options
Diffstat (limited to '52/CH9/EX9.8.a/Example9_8_a.sce')
-rwxr-xr-x | 52/CH9/EX9.8.a/Example9_8_a.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/52/CH9/EX9.8.a/Example9_8_a.sce b/52/CH9/EX9.8.a/Example9_8_a.sce new file mode 100755 index 000000000..9a5bf6dd1 --- /dev/null +++ b/52/CH9/EX9.8.a/Example9_8_a.sce @@ -0,0 +1,12 @@ +//Example 9.8 (a)
+//Program To Determine Smallest Record Length of Bartlett Method
+clear;
+clc;
+close;
+//Data
+fr=0.01;//Frequency Resolution
+N=2400; //Samples
+//RECORD LENGTH CALCULATION
+lb=0.89/fr;
+//Display the result in command window
+disp(lb,"Record Length of Bartlett Method");
\ No newline at end of file |