discrete second order derivative operator for unequally spaced data
4 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I need help to obtain a discrete second order derivative operator, that could be applied on a matrix. The best way, I guess, is to reshape the matrix into vector form and create a diagonal matrix with the operator, which is easy for equally spaced data in the matrix,but how can I incorporate the distances (width and heigth of the cells) for unequally spaced data?
Thanks
2 件のコメント
Matt J
2013 年 2 月 14 日
I don't see how a diagonal matrix could ever give you a derivative operator, even with equally spaced data. A diagonal matrix can only weight each element of the operand independently, not take differences between them. Please describe the organization of your data more clearly. Does each column of your matrix contain signal samples to be differentiated? Is the spacing between these samples the same for all columns?
回答 (4 件)
Teja Muppirala
2013 年 2 月 15 日
Could you possibly use the GRADIENT command? This allows you to pass in unevenly spaced values for X and Y.
help gradient
3 件のコメント
Teja Muppirala
2013 年 2 月 15 日
I though he meant a first derivative (to second order accuracy), so just calling GRADIENT once.
Youssef Khmou
2013 年 2 月 15 日
Discrete Laplacian :
del2(matrix)
Example :
[x,y]=meshgrid(-4:.1:4);
z=exp(-x.^2-y.^2);
dz2=del2(z);
0 件のコメント
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!