Hi,
is there a possibility to remove a value from an array?
the background of the need is following
I have 2 nested for loops in the equation section, and I dont want to allow (i,i) pairs
for i in 1:N loop
for j in 1:N loop
if i==j then continue; // C like description which is not available
// do stuff
end for;
end for;
what would be possible is ...
for i in 1:N loop
for j in 1:i-1,i+1:N loop
// do stuff
end for;
end for;
but now I must somehow exclude i from the array in the nested loop.
Have somebody an idea how this can be done?
thx
daniel
