DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦a03c2c0c0⟧ TextFile

    Length: 195 (0xc3)
    Types: TextFile
    Names: »printmean.c«

Derivation

└─⟦87ddcff64⟧ Bits:30001253 CPHDIST85 Tape, 1985 Autumn Conference Copenhagen
    └─ ⟦this⟧ »cph85dist/stat/src/printmean.c« 

TextFile

printmean (count, sum, sumsq) double sum, sumsq;
	{
	if (count)
		{
		printf ("%4d %10.4f ", count, sum/count);
		if (count > 1)
			printf ("%4.2f, sqrt ((sumsq-sum*sum/count)/(count-1));
		}
	}