How to filter data of every coloumn in a dataset
30 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
hey
i have a datasheet of my measurements and i imported it into matlab. each coloumn of the datasheet represent a sataset. (i have 10 coloumns)i would like to filter (high-butterworth) the data of every coloumn of the datasheet .
how can i do that , without separating thr couloumns manually as arrays?
i am a beginner and i appreciate every help
0 Kommentare
Antworten (1)
Star Strider
am 8 Mär. 2019
If you are using the filtfilt function (as I would certainly recommend), it will filter all the columns at the same time. (If you want to filter along rows, you will have to transpose your matrix.)
‘Input signal, specified as a real-valued or complex-valued vector, matrix, or N-D array. filtfilt operates along the first array dimension of x with size greater than 1.’
2 Kommentare
Star Strider
am 8 Mär. 2019
According to the information in your Workspace browser, ‘drink00’ is a table data type array. You will probably need to use the table2array (link) function to recover the numeric information as an array so you can filter it.
With respect to the error in the image you posted, I have no idea what that could be, since it does not refer to anything else here. However, if you are defining a function, the safest way to work with it is to save it to its own function file and then call it, rather than defining it inside your script. See the documentation on Function Basics (link) for a full discussion.
Siehe auch
Kategorien
Mehr zu Single-Rate Filters finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!