Olayemi Akinsanya
自 2017 起处于活动状态
Followers: 0 Following: 0
Feeds
已回答
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...
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...
7 years 前 | 0
已回答
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
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
7 years 前 | 0