필터 지우기
필터 지우기

Adding a standard deviation to the equation

조회 수: 1 (최근 30일)
Precious Benmaurice
Precious Benmaurice 2018년 3월 14일
답변: NISARGA G K 2018년 3월 19일
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

답변 (1개)

NISARGA G K
NISARGA G K 2018년 3월 19일
I understand you want to find standard deviation of the vector. Add the following line to your code to obtain the same
standard_deviation = sqrt(sum((a - ret).^2)./(len-1))
Alternately, you can use mean and std functions in matlab

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by