1

I was wondering if there already exists a dart package that offers drawing random numbers from known distributions like normal, erlang, exponential, triangular etc.?

Nicolas
  • 190
  • 1
  • 12
  • Can you please elaborate a bit more about what you are asking for? Beside that questions asking for external resources are not appropriate for StackOverflow. Usually all packages are registers at pub.dartlang.org – Günter Zöchbauer Jul 17 '14 at 14:37
  • Haven't seen such a package. – Fox32 Jul 17 '14 at 15:55
  • I need a package to draw random numbers from any distribution. Something like NormalDistribution.getNextRandon. With the Math.Random I can only create uniformly distributed numbers, as far as I understand. @Günter: I know all packages are listed there, but I thought it might be worth asking if someone is currently developing what I need. – Nicolas Jul 19 '14 at 15:59
  • Thanks for the update. So you need to generate number values, what about the 'drawing' in your question? – Günter Zöchbauer Jul 19 '14 at 16:02

1 Answers1

1

You could use the answers to these questions and port the presented code to Dart

Community
  • 1
  • 1
Günter Zöchbauer
  • 623,577
  • 216
  • 2,003
  • 1,567