Write 80387 ALP to obtain: i) Mean ii) Variance iii) Standard Deviation Also plot the histogram for the data set.
Second Year Computer Engineering Microprocessor Programs: Microprocessor Lab: Practical 12: Write 80387 ALP to obtain: i) Mean ii) Variance iii) Standard Deviation Also plot the histogram for the data set. ---------------------------------------------------------------------------------------------------------------------------------- %macro print 2 mov rax,01 mov rdi,01 mov rsi,%1 mov rdx,%2 syscall %endmacro section .data m0 db 10,"Program to calculate mean, variance, standard deviation:" l0:equ $-m0 m1 db 10,"Mean is" l1:equ $-m1 m2 db 10,"Variance is" l2:equ $-m2 m3 db 10,"Standard Deviation is" l3:equ $-m3 m4 db 10,"Values are: 102.59, 198.21, 100.67" ...