From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3588/CH10/EX10.9/EX10_9.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 3588/CH10/EX10.9/EX10_9.sce (limited to '3588/CH10/EX10.9/EX10_9.sce') 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)) -- cgit