mirror of
https://github.com/Zenithsiz/ist-ddrs-lab2
synced 2026-02-03 22:23:55 +00:00
11 lines
320 B
R
11 lines
320 B
R
source("code/8.R")
|
|
|
|
stopping_condition <- 10000
|
|
mm1_stats <- calc_stats_mm1(0.5, 1, 0.99, 101, 0.01, stopping_condition)
|
|
mg1_stats1 <- calc_stats_mg1(0.5, 1, 0.9, 11, 0.1, stopping_condition)
|
|
mg1_stats2 <- calc_stats_mg1(0.5, 1, 0.99, 101, 0.01, stopping_condition)
|
|
|
|
print(mm1_stats)
|
|
print(mg1_stats1)
|
|
print(mg1_stats2)
|