Adding a standard deviation to the equation
Show older comments
Hi,I'm trying to find the standard deviation from this function code that I've written for my mean, please how do I adjust it in order to find the standard deviation from the code I have written? I've tried a few codes but its not running.
function [ret] = mymean(a)
%UNTITLED Summary of this function goes here
% Detailed explanation goes here
len = length(a);
store=0;
for i=1:len
store=store+a(i);
end
ret = store / len;
end
Answers (1)
NISARGA G K
on 19 Mar 2018
Categories
Find more on Numerical Integration and Differential Equations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!