Jiang Wenbo

Results 1 issues of Jiang Wenbo

```matlab % apply powerlaw function x = powerlaw (x, a) if a == 1, return; end x = sign (x) .* abs(x) .^ a; ``` Regarding to the powerlaw function...