I didn't expect a result of 1's:
ILArray<int> test = ILMath.ones<int>(20, 20);
test = test / 2;
I thought the result would be 0's. If ILNumerics uses the Intel IPP library then I believe 1's is the result the IPP library would return for integer division. If this is by design then I guess my best option would be to use something like this to get integer division results:
test = toint32(tosingle(test) / 2.0f);
Any comments? Questions? RTFM pointers? Eric