Write Standard Deviation Distance
39 views (last 30 days)
Show older comments
I am asked to write a function called standard_deviation_distance that takes as input a data vector [1xN] v and a number x [1x1], in that order. And I have code to call your function:
v = [10 12 14];
x = 7;
dist = standard_deviation_distance(v,x)% =-2.5
0 Comments
Answers (1)
VBBV
on 5 Jun 2022
Edited: VBBV
on 5 Jun 2022
v = [10 12 14];
x = [7 7 7]; % length of x vector (weights) for each element and to be same as vector v
dist = standard_deviation_distance(v,x);
disp(['The standard deviation distance is ', num2str(dist)])
function y = standard_deviation_distance(v,x)
y = std(v,x);
end
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!