1

In ILArray of ILNumerics library, is there any shortcut to delete the row or columns like matlab?

Something like this (in matlab):

A(:,2)=[];
A(2,:)=[];

Since the ILNumerics is very similar with Matlab, I curious about this. Does anyone know?

ehmind
  • 265
  • 3
  • 10

1 Answers1

3

Use Empty() method of ILMath class.

for example : A[1, ":"] = ILMath.Empty()

Neelima
  • 243
  • 1
  • 8