Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

root mean square python

def rms(x):
    rms = np.sqrt(np.mean(x**2))
    return rms
Source by scikit-learn.org #
 
PREVIOUS NEXT
Tagged: #root #square #python
ADD COMMENT
Topic
Name
5+7 =