User Portlet User Portlet

Discussions
So I wrote a code that plots the probability distribution function for a number of cascades in a transmission line given initial propagation and distrubance. Initialization is as follows:[mcode]SetOptions[EvaluationNotebook[],...
Hello everyone, So I  wrote the following code to plot a pdf and transmission line cascade model. [mcode]\[Lambda] = 0.7; n = 2000; x = 1; (*Boral Tanner distribution*) BTD[r_, x_, \[Lambda]_] := (x*\[Lambda] (r \[Lambda] )^(r - x - 1))...
[mcode]EGPD[r_, \[Theta]_, \[Lambda]_] := \[Theta] (r \[Lambda] + \ \[Theta])^(r - 1) (E^(-r \[Lambda] - \[Theta]))/r! EGPDdist[\[Theta]_, \[Lambda]_, n_] := Table[EGPD[r, \[Theta], \[Lambda]], {r, 0, n}] // N (* distribution of EGPD omitting...