Borrar filtros
Borrar filtros

index must be a positive integer or logical

1 visualización (últimos 30 días)
sabrina
sabrina el 18 de Mayo de 2014
Respondida: Mischa Kim el 18 de Mayo de 2014
Hi, Please how to solve this problem : "Attempted to access f(0); index must be a positive integer or logical" thnks

Respuesta aceptada

Mischa Kim
Mischa Kim el 18 de Mayo de 2014
Sabrina, difficult to say without seeing the code. However, in MATLAB indexing starts with 1, not 0:
>> a = [4 3 2 1]
a =
4 3 2 1
>> a(0)
Subscript indices must either be real positive integers or logicals.
>> a(1)
ans =
4

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing 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