All entries of array except certain indices in octave/matlab
Posted on Wed 07 December 2011 in Misc
In Octave or Matlab, some times one needs to eliminate certain elements in an array.
For example, if
1 | |
and suppose I want to create a matrix "b" such that it has all the elements of "a" except 20 and 40. This can be achieved by:
1 | |
The result is:
1 | |