TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
mohsen dehghani
NA
1
861
calculate standard deviation in webmatrix
Feb 2 2015 1:54 AM
whats the easiest way to calculate the standard deviation of a query column webmatrix? any predefined method, etc?
if there isn't any easy way.. how can i utilize this code?
public static double StandardDeviation(List<double> valueList)
{ double M = 0.0;
double S = 0.0;
int k = 1;
foreach (double value in valueList)
{ double tmpM = M;
M += (value - tmpM) / k;
S += (value - tmpM) * (value - M);
k++;
}
return Math.Sqrt(S / (k-2));
}
Reply
Answers (
0
)
.Net CMS for E-Commerce site
Session Timeout in MVC5?