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?

有帮助吗?

解决方案

Use Empty() method of ILMath class.

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top