Borrar filtros
Borrar filtros

I keep getting index exceeds matrix dimensions but I don't understand why. I'm trying to sum the elements in an array.

1 visualización (últimos 30 días)
Below is a simple code. I'm creating an array m which contains all odd numbers between 1 and 52015. I'm trying to sum all the elements in the array. I keep getting "Index exceeds matrix dimensions.Error in oddsum (line 33), odd = sum(n). I wasn't sure if transposing m would help solve the problem, but I don't understand how the index exceeds the dimensions of my matrix.
m = 1:2:52015;
n = m';
odd = sum(n); -- this is where my error is

Respuesta aceptada

Star Strider
Star Strider el 1 de Feb. de 2016
Somewhere earlier in your code you have a variable named ‘sum’ that is ‘overshadowing’ the sum function. Rename the variable to something other than ‘sum’ (or the name of any other MATLAB function) and the problem will disappear.

Más respuestas (0)

Categorías

Más información sobre Matrices and Arrays 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!

Translated by