I want to write ALOHA simulation but I plot this picture only G=0 1 2 3.What I need to add?
using Plots
A = []
for G in 0.0:3.0
S = G*ℯ^(-2G)
push!(A, S)
end
println(A)
plot(A)
Your code could be written like this, is this what you need?:
using Plots
G=0.0:0.01:3.0
A= G.*ℯ.^(-2G)
plot(G,A)