Cumulative standard deviation: Difference between revisions

→‎{{header|360 Assembly}}: remove useless instructions
(→‎{{header|360 Assembly}}: remove useless instructions)
Line 10:
 
=={{header|360 Assembly}}==
For maximum compatibility, this program uses only the basic instruction set.
Part of the code length is due to the square root algorithm and to the nice output.
<lang 360asm>******** Standard deviation of a population
STDDEV CSECT
Line 94 ⟶ 95:
B LOOPI
ENDLOOPI EQU *
RETURN EQU *
CNOP 0,4
L R13,4(0,R13)
LM R14,R12,12(R13)
1,392

edits