12-26-2015 07:39 AM
Hi I am studying on filtering
My basic trial is from the txt file with 1D array, with using median filter tool, resulting median filtered signal
But it doesn't work which means it doesn't indicate on plot. I don't know why even it didn't occured error.
Please let me know the reason.
Solved! Go to Solution.
12-26-2015 07:46 AM
12-26-2015 08:07 AM
yes... other things are working but... last process is not working
12-26-2015 08:24 AM
12-26-2015 08:58 AM
this is the data what I asked
12-26-2015 11:27 AM - edited 12-26-2015 11:34 AM
Are you really reading the same file in parallel? Once would be enough. You can branch the wire later.
(If you are reading different files, you need to tell us what you are reading where)
Each of your IO trains containing four file IO functions followed by "spreadsheet string to array" could be replaced by a single "Read from spreasdsheet file". try it!
Your files contain only a single column, so you should create a 1D array instead.
Your "reshape array function creates a 1D array with a single element (the original element at (0:0). Filtering a 1D array with one element will not give you any interesting result. It is possible that you want to use "index array" getting the first columns of your 2D array as a 1D array.
12-26-2015 11:55 AM - edited 12-26-2015 12:09 PM
Try something like this. Filter seems to work quite well:
(Note that read from spreadsheet file has changed in LabVIEW 2015, thus the red X over the icon. Just ignore that. Make sure to select "transpose" so you get the first column instead of the first row)
12-27-2015 03:59 AM
Thank you for every thing. I knew that problem