File SDEV.BA (BASIC source file)

Directory of image this file is from
This file as a plain text file

10   REM MEAN AND STANDARD DEVIATION PROGRAM
20   DIM A(50)
30   PRINT " N =  ";
40   INPUT N
50   PRINT
60   LET S=0
70   LET Q=0
80   FOR I=1 TO N
90   INPUT A(I)
100  LET S=S+A(I)
110  LET Q=Q+A(I)*A(I)
120  PRINT
130  NEXT I
140  PRINT
150  PRINT "MEAN = ";S/N
160  LET D=SQR((Q-((S*S)/N))/(N-1))
170  PRINT "SD = ";D
180  END



Feel free to contact me, David Gesswein djg@pdp8online.com with any questions, comments on the web site, or if you have related equipment, documentation, software etc. you are willing to part with.  I am interested in anything PDP-8 related, computers, peripherals used with them, DEC or third party, or documentation. 

PDP-8 Home Page   PDP-8 Site Map   PDP-8 Site Search