diff options
Diffstat (limited to '2081/CH4/EX4.5/Ex4_5.sce')
-rwxr-xr-x | 2081/CH4/EX4.5/Ex4_5.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2081/CH4/EX4.5/Ex4_5.sce b/2081/CH4/EX4.5/Ex4_5.sce new file mode 100755 index 000000000..819b0de0b --- /dev/null +++ b/2081/CH4/EX4.5/Ex4_5.sce @@ -0,0 +1,16 @@ +N=1000 +n=20 +n1=4 +M=n/n1 +TSC=N*M//system capacity +disp(TSC,'the system capacity in no. of users') +n2=100 +n3=4 +M1=n2/n3 +NSC=N*M1//new system capacity for increased no. of cells +disp(NSC,'the new system capacity for increased no. of cells in no. of users') +n4=700 +n5=7 +M2=n4/n5 +NSC1=N*M2//new system capacity for increased no. of cells +disp(NSC1,'the system capacity for increased no. of cells & also cluster size in no. of users') |