Borrar filtros
Borrar filtros

Index out of bounds

2 visualizaciones (últimos 30 días)
Kevin van Berkel
Kevin van Berkel el 30 de Mayo de 2013
Hi guys,
I need your help once more!
The error is: index out of bounds because size(z)=[22719,1];
So this is my code where things go wrong:
X = [ones(M,1), z(:,t) z(:,t).^2];
and this is the error:
Attempted to access z(:,19); index out of bounds because size(z)=[22719,1].
Any help would be appreciated.
Thanks!

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 30 de Mayo de 2013
The problem is clear
The size of z is [22719,1], which means z(:, 19) does not exist
  2 comentarios
Azzi Abdelmalek
Azzi Abdelmalek el 30 de Mayo de 2013
Kevin's comment
Thanks for your reply Azzi.
So how should I adjust my code?
Azzi Abdelmalek
Azzi Abdelmalek el 30 de Mayo de 2013
Editada: Azzi Abdelmalek el 30 de Mayo de 2013
Maybe this is what you want, but I'm not sure, you have to tell us.
X = [ones(M,1);z(t,1) ;z(t,1).^2];

Iniciar sesión para comentar.

Más respuestas (1)

Kevin van Berkel
Kevin van Berkel el 1 de Jun. de 2013
Works now. Thanks Azzi!

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!

Translated by