Documentation of std2


Global Index (all files) (short | long) | Local Index (files in subdir) (short | long)


Function Synopsis

stdx=std2(x)

Help text

function stdx=std2(x)

 similar to std, but replaces missing value by the mean before calculating
 std

Cross-Reference Information

This function calls This function is called by

Listing of function std2

function stdx=std2(x)


x=rm_mean2(x);
x=zero_fillnan(x);
stdx=std(x);