Azzera filtri
Azzera filtri

Help with neighbor function - inconsistent node connections

2 visualizzazioni (ultimi 30 giorni)
Good day everyone,
I need help with the fuction - neighbor in Simulink/MATLAB. During each time step, the choosen node changes in the model and thus the number of neighbour connection to the node; sometimes its 3 and sometimes its 2 or 1. But MATLAB shows this as an error. I am using MATLAB 2021a. I hope some expericed member in the community can help me with this.
Error:
Size mismatch for MATLAB expression '<output of neighbors>'. Expected = 3x1 Actual = 2x1

Risposte (1)

Walter Roberson
Walter Roberson il 9 Ago 2022
MaxNeigh = 3;
neigh = zeros(MaxNeigh,1);
coder.varsize('neigh', [MaxNeigh 1], [1 0]); %second dimension is fixed
neigh = neighbors(G);

Categorie

Scopri di più su MATLAB in Help Center e File Exchange

Prodotti


Release

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by