(_)
| 119425 | } else return mu; |
| 119426 | }, |
| 119427 | stdev (_) { |
| 119428 | if (arguments.length) { |
| 119429 | sigma = _ == null ? 1 : _; |
| 119430 | return dist; |
| 119431 | } else return sigma; |
| 119432 | }, |
| 119433 | sample: ()=>sampleNormal(mu, sigma), |
| 119434 | pdf: (value)=>densityNormal(value, mu, sigma), |
| 119435 | cdf: (value)=>cumulativeNormal(value, mu, sigma), |
nothing calls this directly
no outgoing calls
no test coverage detected