Borrar filtros
Borrar filtros

Error while computing mean of a row vector

1 visualización (últimos 30 días)
rihab
rihab el 19 de Ag. de 2015
Comentada: Star Strider el 20 de Ag. de 2015
I am getting the following error while finding out the mean of a row vector(using the mean function of matlab) containing ten elements:
Subscript indices must either be real positive integers or logicals.
Could any one tell me how to resolve this error?
Thank you!

Respuesta aceptada

Star Strider
Star Strider el 19 de Ag. de 2015
In the Command Window, type:
which mean -all
If it returns:
mean is a variable.
among its path returns, you are ‘shadowing’ (or ‘overshadowing’) the mean function with a variable you named ‘mean’. The solution is to rename the variable to ‘meanx’ or some such.
  5 comentarios
rihab
rihab el 20 de Ag. de 2015
I am getting the same error: Subscript indices must either be real positive integers or logicals.
But now I am calculating it in the traditional way,i.e taking the sum and dividing it by the total number of observations so no longer a problem for me!
Star Strider
Star Strider el 20 de Ag. de 2015
I still believe you’re shadowing the mean function somewhere in your code.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by