accumarray error: Index into matrix must be positive
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Jack Ie
el 4 de Abr. de 2016
Editada: Walter Roberson
el 4 de Abr. de 2016
G=[0 1 ; 0 2 ; 1 2];
adj=accumarray(G,1,[],[],0,true);
error: Index into matrix must be positive.
0 comentarios
Respuesta aceptada
Star Strider
el 4 de Abr. de 2016
What I do in situations such as yours is to add 1 to the minimum value (here 0) of the index array:
G=[0 1 ; 0 2 ; 1 2];
adj=accumarray(G+1,1,[],[],0,true);
That solves the immediate problem. You can make adjustments in other parts of your code afterwards.
0 comentarios
Más respuestas (2)
Ver también
Categorías
Más información sobre Structures 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!