diff options
Diffstat (limited to '3588/CH10/EX10.9/EX10_9.sce')
-rw-r--r-- | 3588/CH10/EX10.9/EX10_9.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3588/CH10/EX10.9/EX10_9.sce b/3588/CH10/EX10.9/EX10_9.sce new file mode 100644 index 000000000..747322fd4 --- /dev/null +++ b/3588/CH10/EX10.9/EX10_9.sce @@ -0,0 +1,17 @@ +//Clearing console +clc +clear + +//Intializing variables +t1 = 0.03 +w1 = 5 +t2 = 0.1 +w2 = 15 + +//Solving for Rayleigh coefficients +k = [1/(2*w1) w1/2;1/(2*w2) w2/2] +f = [t1;t2] +u=linsolve(k,-f) + +printf('\nResults\n') +printf('\nRayleigh coefficients\n Alpha =%f\n Beta =%f',u(1,1),u(2,1)) |