Effacer les filtres
Effacer les filtres

How do I write a function that finds the max, min, mean, median, mode, std, var, and count of an array? call it "mystat"

38 vues (au cours des 30 derniers jours)
function [min,max,mean,median,mode,var,std] = mystat(x) % Enter in an array and mystat will give the min, max, mean, median, mode, % var, and standard deviation of the array.
mean = mean(x) median = median(x) mode = mode(x) var = var(x) std = std(x) count = length(x) end
For some reason this code doesn't work when I try to call it.
  3 commentaires
mbonus
mbonus le 8 Sep 2016
See Steven's comment below, I totally forgot about that.

Connectez-vous pour commenter.

Réponse acceptée

Steven Lord
Steven Lord le 8 Sep 2016
By specifying your output arguments using the same names as the functions that you need to call to compute those outputs, you make it so MATLAB cannot call those functions. [You can't use the same name as a function and as a variable inside a function.] Change the name of the output arguments, or pack all those outputs into a struct array so that the user of your function doesn't need to call it with seven separate outputs (and doesn't need to remember the order in which you defined your function to return those outputs.)
myout = struct;
myout.mean = mean(x); % etc
  6 commentaires
Steven Lord
Steven Lord le 9 Sep 2016
Nowhere in your code do you assign to a variable named k. Either change the name of the struct in which you're storing your outputs from myout to k or change the name of your output argument from k to myout. [Don't do both.]
Kyle Reagan
Kyle Reagan le 9 Sep 2016
I changed it from "function [k]" to "function [myout]" and it worked. Thanks for the help, it's been a year since I've written any functions.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by