与 Hugo 同步.

Signed-off-by: lion.chan <cy187lion@sina.com>
This commit is contained in:
lion.chan 2022-09-08 16:35:08 +08:00
parent 27c59d0bca
commit 748bf2350d
5 changed files with 17 additions and 1 deletions

View File

@ -9,6 +9,7 @@ author: "Rick Chan"
tags: ["DSP", "Butterworth", "Lowpass", "Highpass", "Bandstop"] tags: ["DSP", "Butterworth", "Lowpass", "Highpass", "Bandstop"]
categories: ["Algorithm"] categories: ["Algorithm"]
published: true published: true
math: true
--- ---
- [1. 巴特沃斯低通滤波器](#1-巴特沃斯低通滤波器) - [1. 巴特沃斯低通滤波器](#1-巴特沃斯低通滤波器)

View File

@ -9,6 +9,7 @@ author: "Rick Chan"
tags: ["DSP", "傅里叶变换", "拉普拉斯变换", "Z 变换"] tags: ["DSP", "傅里叶变换", "拉普拉斯变换", "Z 变换"]
categories: ["Algorithm"] categories: ["Algorithm"]
published: true published: true
math: true
--- ---
- [1. 傅里叶变换](#1-傅里叶变换) - [1. 傅里叶变换](#1-傅里叶变换)

View File

@ -1,4 +1,16 @@
# 拉格朗日插值 ---
layout: post
title: "拉格朗日插值"
subtitle: ""
description: "给出拉格朗日多项式插值的推导过程和标准公式。"
excerpt: "通过简单的推导过程和示例程序演示拉格朗日多项式插值。"
date: 2022-09-08 12:50:00
author: "Rick Chan"
tags: ["DSP", "Lagrange", "Interpolation", "Polynomial"]
categories: ["Algorithm"]
published: true
math: true
---
Fit N+1 points with an $N^{th}$ degree polynomial Fit N+1 points with an $N^{th}$ degree polynomial

View File

@ -9,6 +9,7 @@ author: "Rick Chan"
tags: ["DSP", "FIR", "IIR"] tags: ["DSP", "FIR", "IIR"]
categories: ["Algorithm"] categories: ["Algorithm"]
published: true published: true
math: true
--- ---
- [1. 有限冲击响应滤波器](#1-有限冲击响应滤波器) - [1. 有限冲击响应滤波器](#1-有限冲击响应滤波器)

View File

@ -12,3 +12,4 @@ TODO:
8. <https://blog.csdn.net/github_33678609/article/details/106931015> 8. <https://blog.csdn.net/github_33678609/article/details/106931015>
9. <https://blog.csdn.net/Romeo_tune/article/details/117426512> 9. <https://blog.csdn.net/Romeo_tune/article/details/117426512>
10. <https://blog.csdn.net/weixin_42415177/article/details/100733592> 10. <https://blog.csdn.net/weixin_42415177/article/details/100733592>
11. <http://t.zoukankan.com/zhiqiang_zhang-p-11109550.html>