How to take mean of integers value?

3 visualizaciones (últimos 30 días)
vimal kumar chawda
vimal kumar chawda el 12 de Jun. de 2021
Comentada: vimal kumar chawda el 13 de Jun. de 2021
I want to take mean of 5 column. How can I ? please find the attachment of the data.
  2 comentarios
SALAH ALRABEEI
SALAH ALRABEEI el 12 de Jun. de 2021
Use mean(A,dir) where A is ur matrix and dir is the direction in which u r averaging. dir takes 1,or2,or3 etc values
vimal kumar chawda
vimal kumar chawda el 13 de Jun. de 2021
Column is the z axis and the instruments is rectangel , I am finding out the inclination and mean of inclination at each & every step. Does mean will affect any way to my final/mean inclination? Just visualise it.

Iniciar sesión para comentar.

Respuesta aceptada

Scott MacKenzie
Scott MacKenzie el 12 de Jun. de 2021
Editada: Scott MacKenzie el 12 de Jun. de 2021
You need to use braces because your data are in a table:
mean(LSinclination{:,5})
If it's just the integer values you want the mean of (as suggested in your question title), then
intLogical = mod(LSinclination{:,5},1)==0
mean(LSinclination{intLogical,5});

Más respuestas (0)

Categorías

Más información sobre Function Creation en Help Center y File Exchange.

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by