Finding the mean of my entire data
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How do I find the entire mean of all my data points
1 comentario
Luna
el 28 de Nov. de 2018
Could you please be more specific about what you needed and how is your data structure?
Respuestas (3)
Luna
el 28 de Nov. de 2018
Editada: Luna
el 28 de Nov. de 2018
You can not put file name into mean function.
Please put variable name which exist in your workspace after loading your data.
mean(variableName)
You haven't included your workspace in that screenshot so I don't see anything.
for example create a 5x5 matrix A and take mean value. Mean works with columns.
A = magic(5)
mean(A)
0 comentarios
Star Strider
el 28 de Nov. de 2018
If you have R2018b, use the 'all' argument:
Avg = mean(MyMatrix, 'all')
otherwise, convert it to a column vector and take the mean of that:
Avg = mean(MyMatrix(:))
0 comentarios
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!