0

I want to use the Latin Hypercube sampling method to select points uniformly from a Normal Distribution. If I have the line below which gives me a Normally Distributed set of data, how would I then go about applying the Latin Hypercube method to it?

d = 3*t +0.00167*randn(1000,1);

Thanks

user131983
  • 3,787
  • 4
  • 27
  • 42
  • What have you tried so far, and why didn't it work. Some code that demonstrates your problem would be helpful. – David Mar 05 '14 at 22:48

1 Answers1

1

I believe you are looking for lhsnorm function

you can read about it here lhsnorm

mhmsa
  • 475
  • 3
  • 13