Hello,
i want to create a VI which does something what sound easy but i cant find out how to do it:
Input-Parameter:
1. Numeric Array_in (Int32)
2. tolerance (Int32)
Output Parameter:
1. Numeric Array_out (Int32)
For example:
Input:
Tolerance: 10
100
200
201
300
109
400
405
0
900
Output:
100
201
300
109
405
0
900
The VI should remove all numbers from the array which are equal (plus/minus the tolerance set by the second input parameter).
But: Only numbers which are next to each other should be
removed. As you can see in the example there are two pairs of equal
numbers +/- 10%: . There is 200&201 and 400&405. The VI sould
remove the first number of a pair if they are equal.
Any idea how to solve this problem?
Thank you very much for your help.