ftp.nice.ch/pub/next/science/mathematics/Random.2.0.N.bs.tar.gz#/Random2.0/Source/Gaussian.h

This is Gaussian.h in view mode; [Download] [Up]

//
// Gaussian
//
// Copyright (C) 1992 Contemporary Design Studios. All rights reserved.
//


#import "Random.h"


@interface Gaussian : Random


{
    BOOL	iset;			// For gaussian generation.
    double	gset;
    
    double	gscale;			// Gaussian scaling;
    double	gorigin;		// Gaussian origin;
}


- initEngineInstance:anObject;

- (double)gScale;
- setGScale:(double)aScale;
- (double)gOrigin;
- setGOrigin:(double)anOrigin;
- (double)gaussian;			// Return gausian variable.

- read:(NXTypedStream *)stream;
- write:(NXTypedStream *)stream;


@end


//
// End of file.
//

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.