08-14-2013 04:58 PM
Hello,
I am attempting to delete the rows that contain a multiple of the x-data from the original array and have the output array show the original array minus the delete harmonics array.
Original array:
100 3
200 18
300 13
400 8
500 0
600 0
700 0
delete rows that contain multiples of 300. Output array will be
100 3
200 18
400 8
500 0
700 0
Any help will be sincerely appreciated.
Thanks,
hiNi.
Solved! Go to Solution.
08-14-2013 05:36 PM
This?
08-15-2013 10:39 AM
THANK YOU!
08-15-2013 04:59 PM
Hello,
I wanted to further expand on this program as follows:
I wanted to delete the rows that are a multiples of the fundamental entry. However, the multiples of the fundamental are not always an exact multiple, they can differ by up to 3M. So, from the origial array,:
130.4M -65.386
149.4M 9.6346
172.2M -64.981
301.4M -17.273
426.8M -68.169
449.6M -820.72m
472.4M -66.132...
with the multiples of 149.4M deleted, the output array should be:
130.4M -65.386
172.2M-64.981
426.8M -98.169
472.4M -66.132...
Any help will be greatly appreciated!
Thanks,
hiNi.
10-20-2013 02:55 AM