Effacer les filtres
Effacer les filtres

function with two outputs

4 vues (au cours des 30 derniers jours)
Kendall Donahoe
Kendall Donahoe le 28 Avr 2020
I'm trying to create a function that finds the mean and median of testscores (x). I am then supposed to call a specific input i.e. x=[ 80, 62, 97, 73, 86]. and then use the outputs to find the difference between the mean and the median outside of the function. this is what I have so far:
function [m,d]=testscore(x)
n=length(x);
m= sum(x)/n;
d= median(x);
end
  2 commentaires
Toder
Toder le 28 Avr 2020
This looks fine. What is your question?
Geoff Hayes
Geoff Hayes le 29 Avr 2020
Kendall - you can also use the mean function.

Connectez-vous pour commenter.

Réponses (1)

Steven Lord
Steven Lord le 29 Avr 2020
I'm taking a guess at the problem you're experiencing.
In order to obtain one or more outputs from a function, two conditions must be satisfied.
  1. The function must be defined such that it returns one or more outputs.
  2. The function must be called with one or more outputs, and you will receive as many outputs as you request.
Your function satisfies the first of those conditions. Its definition states that it returns two variables, m and d.
If you call the function with fewer outputs than it defines, MATLAB will return the first however many output arguments you requested. So if you asked:
m1 = testscore(1:10)
you're only going to receive the first output in testscore definition, m. If you asked for both you'll get both.
[m2, d2] = testscore1(1:10)
There's a special case for 0 outputs: see the documentation for the ans function.

Catégories

En savoir plus sur Matrix Indexing 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