09-10-2022 06:31 AM
I have a question brothers. Can you help me please?
I want to read the data continuously from the excel sheet but into equal data. For example: If I have a data of 5000 samples, I want to read the data with equal length of 1000 samples like 0-999, 1000-1999, 2000-2999, 3000-3999, 4000-4999. If you have any solution, please help me by giving an Idea. i want this data for pre-processing like ICA, Bandpass filter etc
Thank You.
09-10-2022 10:14 AM
@Mahi8337 wrote:
I have a question brothers. Can you help me please?
I want to read the data continuously from the excel sheet but into equal data. For example: If I have a data of 5000 samples, I want to read the data with equal length of 1000 samples like 0-999, 1000-1999, 2000-2999, 3000-3999, 4000-4999. If you have any solution, please help me by giving an Idea. i want this data for pre-processing like ICA, Bandpass filter etc
Thank You.
Read all data as one 1D array, then use a FOR loop where you take a subset based on the iteration terminal. (index=[i] x 1000, size=1000) or you can reshape the array into a 2D array with 1000 columns an autoindex on a FOR loop.
You still need to decide what to do in the last iteration if there is a remainder.
(If this is difficult for you, use the learning resources listed at the top of the forum. )
09-10-2022 10:24 AM
09-13-2022 05:37 AM
Thank you very much for your design. This would help me a lot..