Borrar filtros
Borrar filtros

Problem adding components of a vector using a while loop

1 visualización (últimos 30 días)
Mary Jeppson
Mary Jeppson el 11 de Mayo de 2016
Comentada: Mary Jeppson el 12 de Mayo de 2016
Can anyone tell me what's wrong with this code?
x = [1 23 43 72 87 56 98 33];
b = 0;
k = 1;
while k<=length(x)
b = b+k(x)
k = k+1
end
I get index exceeds matrix dimensions. Thank you very much for your help

Respuesta aceptada

Adam
Adam el 11 de Mayo de 2016
Editada: Adam el 11 de Mayo de 2016
You should be using
b = b + x(k)
rather than
b = b + k(x)
x is your vector, k is the index into it.

Más respuestas (1)

Stalin Samuel
Stalin Samuel el 11 de Mayo de 2016
replace b = b+k(x) into b = b+x(k)

Categorías

Más información sobre Loops and Conditional Statements 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