Coefficient Matrix for Savitzky-Golay Data Filtering

Starting from a polynomial coefficient vector such as: [-3/35 12/35 17/35 12/35 -3/35] I would like to create a coefficient matrix of the form:
by iteration of this vector in order to perfrom the Savitzky-Golay signal smoothing. How is this possible without using a for ... loop?

1 件のコメント

Jan
Jan 2016 年 11 月 14 日
編集済み: Jan 2016 年 11 月 14 日
Why do you want to avoid a loop? Are you aware that this must be done by a loop, even if it is hidden inside a Matlab command? Why do you want to create a potentially huge matrix with such a low density of information? Note that you have 4 independent values only in your example. Do you want at least a sparse array?
The explicite creation of the matrix is such a waste of time, that a FOR loop will not matter at all. If you want to compute the matrix product also, you loose even more time, because the matrix consists almost only of zeros. Use filter instead.

サインインしてコメントする。

 採用された回答

Image Analyst
Image Analyst 2016 年 11 月 14 日

0 投票

Why do you want this? Who cares what the coefficients are? Just use sgolayfilt() and be done with it.

2 件のコメント

Saeid
Saeid 2016 年 11 月 22 日
Thanks for the answer! I didn't have the Matlab module for this fitting so I wanted to program from scratch. I still haven't used the program you have sent but that could solve the problem and save me buying the Matlab module!
Image Analyst
Image Analyst 2016 年 11 月 22 日
You can do the Savitzky-Golay filter yourself. It's essentially just a polynomial fit to a window that slides across the signal. So just have a for loop to have a window move across and use polyfit() to get the polynomial, then use polyval() to get the value at the center of the window.

サインインしてコメントする。

その他の回答 (0 件)

質問済み:

2016 年 11 月 14 日

コメント済み:

2016 年 11 月 22 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by