Effacer les filtres
Effacer les filtres

accumarray error: Index into matrix must be positive

2 vues (au cours des 30 derniers jours)
Jack Ie
Jack Ie le 4 Avr 2016
G=[0 1 ; 0 2 ; 1 2];
adj=accumarray(G,1,[],[],0,true);
error: Index into matrix must be positive.

Réponse acceptée

Star Strider
Star Strider le 4 Avr 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.

Plus de réponses (2)

Muhammad Usman Saleem
Muhammad Usman Saleem le 4 Avr 2016

Chad Greene
Chad Greene le 4 Avr 2016
The zeros in G are not positive.

Catégories

En savoir plus sur Data Types dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by