You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/netperfmeter.1
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -206,10 +206,15 @@ The following distributions are supported:
206
206
Constant, i.e. always the same. Example: a frame rate const1000 for means all frames have a size of 1000 bytes.
207
207
.Ituniform<a>,<b>
208
208
Uniformly distributed from the interval [a,b). Example: uniform900,1100.
209
-
.Itexp<p>
210
-
Exponential distribution with average <p>. Example: exp1000.
209
+
.Itexp<mean>
210
+
Exponential distribution with mean <mean>. Example: exp1000.
211
211
.Itpareto<location>,<shape>
212
212
Pareto distribution with location <location> and shape <shape>. Example: pareto0.166667,1.5.
213
+
.Itnormal<mean>,<stddev>
214
+
Normal distribution with mean <mean> and standard deviation <stddev>. Example: normal1000,500.
215
+
Note that normal distribution may result in negative values, which may be ignored (frame size) or interpreted as saturated traffic (frame rate).
216
+
.Ittruncnormal<mean>,<stddev>
217
+
Truncated normal distribution with mean <mean> and standard deviation <stddev>, i.e. normal distribution without negative values. Example: truncnormal1000,500.
0 commit comments