Aptech Systems, Inc. Worldwide Headquarters
Mailing Address:
PO Box 250
Black Diamond, WA 98010 USAStreet Address:
30741 Third Avenue #160
Black Diamond, WA 98010 USAPhone: 360.886.7100
FAX: 360.886.8922Ready to Get Started?
For Pricing and Distribution
Industry Solutions
Products
Resources
Support
Training & Events
Want more guidance while learning about the full functionality of GAUSS and its capabilities? Get in touch for in-person training or browse additional references below.
Tutorials
Step-by-step, informative lessons for those who want to dive into GAUSS and achieve their goals, fast.
Have a Specific Question?
Get a real answer from a real person
- Need Support?
Q&A: Register and Login
Support Plans
Premier Support and Platinum Premier Support are annually renewable membership programs that provide you with important benefits including technical support, product maintenance, and substantial cost-saving features for your GAUSS System or the GAUSS Engine.
User Forums
Join our community to see why our users are considered some of the most active and helpful in the industry!
Where to Buy
Available across the globe, you can have access to GAUSS no matter where you are.
Recent Tags
applications character vectors CMLMT covariance matrix dates dlibrary dllcall ECDF Editor error handling errors floating network GAUSS Engine Geometric mean graphics GUI hardware histogram hotkeys if statements installation Java API linux localization Matlab convert matlab translation matrices matrix initialization matrix manipulation Maxlik MaxLikMT Memory output pgraph graph PQG graphics RAM random numbers RedHat 6.1 simulation string functions strings threading threads loops Time Series writing dataRecent Questions
Features
Resources
Simulating from a t distribution
Hello,
Maybe this is a silly question but I am trying to get simulations from a t distribution and cant find it. Any help?
Thanks.
3 Answers
The simplest way to accomplish this is by using the student-t inverse cdf to transform random uniform numbers like this:
proc (1) = rndT(rw, cl, df); retp(cdftci(rndu(rw, cl), df)); endp;
You can test that the distribution of your numbers is correct by checking to see what percentage of your numbers are less than a certain value and then comparing that with the T-CDF function:
rw = 1e5;
cl = 1;
df = 5;
r = rndT(rw, cl, df);
checkVal = 0.37;
comp = cdftc( checkVal, df);
//Since cdftc returns the compliment subtract 1
print (1 - comp);
print (sumc(r .<= checkVal))/rw;
proc (1) = rndT(rw, cl, df);
retp(cdftci(rndu(rw, cl), df));
endp;
You can copy and paste the code snippet above to check. With a ‘checkVal’ of 0.37 both print statements should be about 0.636. You can change ‘checkVal’ to test other points.
I think there may be a faster method to make the random deviates in terms of the function rndGamma. But, I don’t know it off the top of my head.
Thanks a lot. Basically my problem started because if you search in the help for this command that you showed me now “rndT”, is non existent.
It would be good to include it I believe.
Best
Barbara
Sorry, my mistake, this is a function you are creating yourself. Please, disregard my last answer.
Best
Barbara

