Descriptive statistics using Octave language
Code: "stat_desc.m". Programming language: Octave DMelt Version 1. Last modified: 05/09/2015. License: Pro
https://datamelt.org/code/cache/stat_desc_792.m
To run this script using the DMelt IDE, copy the above URL link to the menu [File]→[Read script from URL] of the DMelt IDE.



v=[1,10,20,2,4,7,4,3]
a=mean(v); printf('%f\n',a)
a=var(v); printf('%f\n',a)
a=std(v); printf('%f\n',a)

You see the box below because you did not login.