photo

Olayemi Akinsanya


Actif depuis 2017

Followers: 0   Following: 0

Statistiques

  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
How to calculate mean and variance?
P=[10:2:70] i wrote a script for variance, it gives me a value of 320. when i check with var(P), it gives me a value of 330...

plus de 7 ans il y a | 0

Réponse apportée
what will be the program in matlab to find the average of various numbers?
function resultv = mymean(P) mysum=0; for i=length(P) mysum= mysum +(i); end resultv = mysum/length(P); end

plus de 7 ans il y a | 0