Skip to content

Commit af8265b

Browse files
committed
add ss
1 parent b460ca3 commit af8265b

26 files changed

Lines changed: 444 additions & 41 deletions

mkdocs.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ plugins:
1414
enable_creation_date: false
1515
type: date
1616
- offline
17-
copyright: Copyright © 2024 - 2026 Weitao JIANG.
17+
copyright: |
18+
Copyright &copy; 2024 - 2026 Weitao JIANG. <br>
19+
<a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer">京ICP备2025155858号-1</a> |
20+
<a href="https://beian.mps.gov.cn/#/query/webSearch?code=11010802047067" rel="noreferrer" target="_blank">京公网安备11010802047067号</a> |
21+
<a href="https://icp.gov.moe/?keyword=20268192" target="_blank">萌ICP备20268192号</a>
1822
markdown_extensions:
1923
- def_list
2024
- neoteroi.timeline

notes/ss.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,15 @@ $$
179179

180180
**筛选特性**:$f(t)\ast\delta(t-t_0)=f(t-t_0)$
181181

182+
## Fourier 变换
183+
当代通信系统和信号处理技术的发展处处伴随着傅里叶变换的精心应用。作为一种变换方法,傅里叶变换启发引领了一系列变换方法的产生:陆续出现了短时傅里叶变换、Gabor 展开、Wigner-Wille 分布、小波变换、子带编码等众多研究课题。
182184

185+
### 傅立叶级数
186+
周期信号可以表示为一系列三角函数的叠加,即傅立叶级数:
187+
188+
$$
189+
f(t)=a_0+\sum_{n=1}^\infty\left[a_n\cos\left(\frac{2\pi nt}{T}\right)+b_n\sin\left(\frac{2\pi nt}{T}\right)\right]
190+
$$
183191

184192
## 通信系统
185193
### 系统可实现性、佩里维纳准则

overrides/main.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,16 @@
3838
</div>
3939
</div>
4040
{% endblock %}
41+
42+
{% block footer %}
43+
{{ super() }}
44+
<script>
45+
document.addEventListener('DOMContentLoaded', function() {
46+
const copyright = document.querySelector('.md-footer-copyright__highlight');
47+
if (copyright) {
48+
const beianHTML = ` | <a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">京ICP备2025155858号-1</a> | <a href="https://beian.mps.gov.cn/#/query/webSearch?code=11010802047067" rel="noreferrer" target="_blank" style="display: inline-flex; align-items: center; gap: 4px; text-decoration: none;"><img src="https://beian.mps.gov.cn/web/assets/logo01.6189a29f.png" alt="police" style="height: 14px; vertical-align: middle;">京公网安备11010802047067号</a> | <a href="https://icp.gov.moe/?keyword=20268192" target="_blank" style="text-decoration: none;">萌ICP备20268192号</a>`;
49+
copyright.insertAdjacentHTML('afterend', beianHTML);
50+
}
51+
});
52+
</script>
53+
{% endblock %}

site/404.html

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1468,6 +1468,7 @@ <h1>404 - Not found</h1>
14681468

14691469
</main>
14701470

1471+
14711472
<footer class="md-footer">
14721473

14731474

@@ -1477,7 +1478,11 @@ <h1>404 - Not found</h1>
14771478
<div class="md-copyright">
14781479

14791480
<div class="md-copyright__highlight">
1480-
Copyright &copy; 2024 - 2026 Weitao JIANG.
1481+
Copyright &copy; 2024 - 2026 Weitao JIANG. <br>
1482+
<a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer">京ICP备2025155858号-1</a> |
1483+
<a href="https://beian.mps.gov.cn/#/query/webSearch?code=11010802047067" rel="noreferrer" target="_blank">京公网安备11010802047067号</a> |
1484+
<a href="https://icp.gov.moe/?keyword=20268192" target="_blank">萌ICP备20268192号</a>
1485+
14811486
</div>
14821487

14831488

@@ -1516,6 +1521,16 @@ <h1>404 - Not found</h1>
15161521
</div>
15171522
</footer>
15181523

1524+
<script>
1525+
document.addEventListener('DOMContentLoaded', function() {
1526+
const copyright = document.querySelector('.md-footer-copyright__highlight');
1527+
if (copyright) {
1528+
const beianHTML = ` | <a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">京ICP备2025155858号-1</a> | <a href="https://beian.mps.gov.cn/#/query/webSearch?code=11010802047067" rel="noreferrer" target="_blank" style="display: inline-flex; align-items: center; gap: 4px; text-decoration: none;"><img src="https://beian.mps.gov.cn/web/assets/logo01.6189a29f.png" alt="police" style="height: 14px; vertical-align: middle;">京公网安备11010802047067号</a> | <a href="https://icp.gov.moe/?keyword=20268192" target="_blank" style="text-decoration: none;">萌ICP备20268192号</a>`;
1529+
copyright.insertAdjacentHTML('afterend', beianHTML);
1530+
}
1531+
});
1532+
</script>
1533+
15191534
</div>
15201535
<div class="md-dialog" data-md-component="dialog">
15211536
<div class="md-dialog__inner md-typeset"></div>

site/BigPhysics.html

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2413,6 +2413,7 @@ <h2 id="_20">参考资料</h2>
24132413

24142414
</main>
24152415

2416+
24162417
<footer class="md-footer">
24172418

24182419

@@ -2460,7 +2461,11 @@ <h2 id="_20">参考资料</h2>
24602461
<div class="md-copyright">
24612462

24622463
<div class="md-copyright__highlight">
2463-
Copyright &copy; 2024 - 2026 Weitao JIANG.
2464+
Copyright &copy; 2024 - 2026 Weitao JIANG. <br>
2465+
<a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer">京ICP备2025155858号-1</a> |
2466+
<a href="https://beian.mps.gov.cn/#/query/webSearch?code=11010802047067" rel="noreferrer" target="_blank">京公网安备11010802047067号</a> |
2467+
<a href="https://icp.gov.moe/?keyword=20268192" target="_blank">萌ICP备20268192号</a>
2468+
24642469
</div>
24652470

24662471

@@ -2499,6 +2504,16 @@ <h2 id="_20">参考资料</h2>
24992504
</div>
25002505
</footer>
25012506

2507+
<script>
2508+
document.addEventListener('DOMContentLoaded', function() {
2509+
const copyright = document.querySelector('.md-footer-copyright__highlight');
2510+
if (copyright) {
2511+
const beianHTML = ` | <a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">京ICP备2025155858号-1</a> | <a href="https://beian.mps.gov.cn/#/query/webSearch?code=11010802047067" rel="noreferrer" target="_blank" style="display: inline-flex; align-items: center; gap: 4px; text-decoration: none;"><img src="https://beian.mps.gov.cn/web/assets/logo01.6189a29f.png" alt="police" style="height: 14px; vertical-align: middle;">京公网安备11010802047067号</a> | <a href="https://icp.gov.moe/?keyword=20268192" target="_blank" style="text-decoration: none;">萌ICP备20268192号</a>`;
2512+
copyright.insertAdjacentHTML('afterend', beianHTML);
2513+
}
2514+
});
2515+
</script>
2516+
25022517
</div>
25032518
<div class="md-dialog" data-md-component="dialog">
25042519
<div class="md-dialog__inner md-typeset"></div>

site/LinearAlgebra.html

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3893,6 +3893,7 @@ <h3 id="43">4.3 致谢</h3>
38933893

38943894
</main>
38953895

3896+
38963897
<footer class="md-footer">
38973898

38983899

@@ -3940,7 +3941,11 @@ <h3 id="43">4.3 致谢</h3>
39403941
<div class="md-copyright">
39413942

39423943
<div class="md-copyright__highlight">
3943-
Copyright &copy; 2024 - 2026 Weitao JIANG.
3944+
Copyright &copy; 2024 - 2026 Weitao JIANG. <br>
3945+
<a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer">京ICP备2025155858号-1</a> |
3946+
<a href="https://beian.mps.gov.cn/#/query/webSearch?code=11010802047067" rel="noreferrer" target="_blank">京公网安备11010802047067号</a> |
3947+
<a href="https://icp.gov.moe/?keyword=20268192" target="_blank">萌ICP备20268192号</a>
3948+
39443949
</div>
39453950

39463951

@@ -3979,6 +3984,16 @@ <h3 id="43">4.3 致谢</h3>
39793984
</div>
39803985
</footer>
39813986

3987+
<script>
3988+
document.addEventListener('DOMContentLoaded', function() {
3989+
const copyright = document.querySelector('.md-footer-copyright__highlight');
3990+
if (copyright) {
3991+
const beianHTML = ` | <a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">京ICP备2025155858号-1</a> | <a href="https://beian.mps.gov.cn/#/query/webSearch?code=11010802047067" rel="noreferrer" target="_blank" style="display: inline-flex; align-items: center; gap: 4px; text-decoration: none;"><img src="https://beian.mps.gov.cn/web/assets/logo01.6189a29f.png" alt="police" style="height: 14px; vertical-align: middle;">京公网安备11010802047067号</a> | <a href="https://icp.gov.moe/?keyword=20268192" target="_blank" style="text-decoration: none;">萌ICP备20268192号</a>`;
3992+
copyright.insertAdjacentHTML('afterend', beianHTML);
3993+
}
3994+
});
3995+
</script>
3996+
39823997
</div>
39833998
<div class="md-dialog" data-md-component="dialog">
39843999
<div class="md-dialog__inner md-typeset"></div>

site/LinearAlgebra2.html

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2555,6 +2555,7 @@ <h2 id="_12">附: 几道高微习题</h2>
25552555

25562556
</main>
25572557

2558+
25582559
<footer class="md-footer">
25592560

25602561

@@ -2602,7 +2603,11 @@ <h2 id="_12">附: 几道高微习题</h2>
26022603
<div class="md-copyright">
26032604

26042605
<div class="md-copyright__highlight">
2605-
Copyright &copy; 2024 - 2026 Weitao JIANG.
2606+
Copyright &copy; 2024 - 2026 Weitao JIANG. <br>
2607+
<a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer">京ICP备2025155858号-1</a> |
2608+
<a href="https://beian.mps.gov.cn/#/query/webSearch?code=11010802047067" rel="noreferrer" target="_blank">京公网安备11010802047067号</a> |
2609+
<a href="https://icp.gov.moe/?keyword=20268192" target="_blank">萌ICP备20268192号</a>
2610+
26062611
</div>
26072612

26082613

@@ -2641,6 +2646,16 @@ <h2 id="_12">附: 几道高微习题</h2>
26412646
</div>
26422647
</footer>
26432648

2649+
<script>
2650+
document.addEventListener('DOMContentLoaded', function() {
2651+
const copyright = document.querySelector('.md-footer-copyright__highlight');
2652+
if (copyright) {
2653+
const beianHTML = ` | <a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">京ICP备2025155858号-1</a> | <a href="https://beian.mps.gov.cn/#/query/webSearch?code=11010802047067" rel="noreferrer" target="_blank" style="display: inline-flex; align-items: center; gap: 4px; text-decoration: none;"><img src="https://beian.mps.gov.cn/web/assets/logo01.6189a29f.png" alt="police" style="height: 14px; vertical-align: middle;">京公网安备11010802047067号</a> | <a href="https://icp.gov.moe/?keyword=20268192" target="_blank" style="text-decoration: none;">萌ICP备20268192号</a>`;
2654+
copyright.insertAdjacentHTML('afterend', beianHTML);
2655+
}
2656+
});
2657+
</script>
2658+
26442659
</div>
26452660
<div class="md-dialog" data-md-component="dialog">
26462661
<div class="md-dialog__inner md-typeset"></div>

site/adda.html

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1529,6 +1529,7 @@ <h1>模拟数字数据转换器</h1>
15291529

15301530
</main>
15311531

1532+
15321533
<footer class="md-footer">
15331534

15341535

@@ -1560,7 +1561,11 @@ <h1>模拟数字数据转换器</h1>
15601561
<div class="md-copyright">
15611562

15621563
<div class="md-copyright__highlight">
1563-
Copyright &copy; 2024 - 2026 Weitao JIANG.
1564+
Copyright &copy; 2024 - 2026 Weitao JIANG. <br>
1565+
<a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer">京ICP备2025155858号-1</a> |
1566+
<a href="https://beian.mps.gov.cn/#/query/webSearch?code=11010802047067" rel="noreferrer" target="_blank">京公网安备11010802047067号</a> |
1567+
<a href="https://icp.gov.moe/?keyword=20268192" target="_blank">萌ICP备20268192号</a>
1568+
15641569
</div>
15651570

15661571

@@ -1599,6 +1604,16 @@ <h1>模拟数字数据转换器</h1>
15991604
</div>
16001605
</footer>
16011606

1607+
<script>
1608+
document.addEventListener('DOMContentLoaded', function() {
1609+
const copyright = document.querySelector('.md-footer-copyright__highlight');
1610+
if (copyright) {
1611+
const beianHTML = ` | <a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">京ICP备2025155858号-1</a> | <a href="https://beian.mps.gov.cn/#/query/webSearch?code=11010802047067" rel="noreferrer" target="_blank" style="display: inline-flex; align-items: center; gap: 4px; text-decoration: none;"><img src="https://beian.mps.gov.cn/web/assets/logo01.6189a29f.png" alt="police" style="height: 14px; vertical-align: middle;">京公网安备11010802047067号</a> | <a href="https://icp.gov.moe/?keyword=20268192" target="_blank" style="text-decoration: none;">萌ICP备20268192号</a>`;
1612+
copyright.insertAdjacentHTML('afterend', beianHTML);
1613+
}
1614+
});
1615+
</script>
1616+
16021617
</div>
16031618
<div class="md-dialog" data-md-component="dialog">
16041619
<div class="md-dialog__inner md-typeset"></div>

site/analog.html

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1531,6 +1531,7 @@ <h1>模拟电路原理</h1>
15311531

15321532
</main>
15331533

1534+
15341535
<footer class="md-footer">
15351536

15361537

@@ -1578,7 +1579,11 @@ <h1>模拟电路原理</h1>
15781579
<div class="md-copyright">
15791580

15801581
<div class="md-copyright__highlight">
1581-
Copyright &copy; 2024 - 2026 Weitao JIANG.
1582+
Copyright &copy; 2024 - 2026 Weitao JIANG. <br>
1583+
<a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer">京ICP备2025155858号-1</a> |
1584+
<a href="https://beian.mps.gov.cn/#/query/webSearch?code=11010802047067" rel="noreferrer" target="_blank">京公网安备11010802047067号</a> |
1585+
<a href="https://icp.gov.moe/?keyword=20268192" target="_blank">萌ICP备20268192号</a>
1586+
15821587
</div>
15831588

15841589

@@ -1617,6 +1622,16 @@ <h1>模拟电路原理</h1>
16171622
</div>
16181623
</footer>
16191624

1625+
<script>
1626+
document.addEventListener('DOMContentLoaded', function() {
1627+
const copyright = document.querySelector('.md-footer-copyright__highlight');
1628+
if (copyright) {
1629+
const beianHTML = ` | <a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">京ICP备2025155858号-1</a> | <a href="https://beian.mps.gov.cn/#/query/webSearch?code=11010802047067" rel="noreferrer" target="_blank" style="display: inline-flex; align-items: center; gap: 4px; text-decoration: none;"><img src="https://beian.mps.gov.cn/web/assets/logo01.6189a29f.png" alt="police" style="height: 14px; vertical-align: middle;">京公网安备11010802047067号</a> | <a href="https://icp.gov.moe/?keyword=20268192" target="_blank" style="text-decoration: none;">萌ICP备20268192号</a>`;
1630+
copyright.insertAdjacentHTML('afterend', beianHTML);
1631+
}
1632+
});
1633+
</script>
1634+
16201635
</div>
16211636
<div class="md-dialog" data-md-component="dialog">
16221637
<div class="md-dialog__inner md-typeset"></div>

site/circuits.html

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3177,6 +3177,7 @@ <h4 id="_25">负反馈分析</h4>
31773177

31783178
</main>
31793179

3180+
31803181
<footer class="md-footer">
31813182

31823183

@@ -3224,7 +3225,11 @@ <h4 id="_25">负反馈分析</h4>
32243225
<div class="md-copyright">
32253226

32263227
<div class="md-copyright__highlight">
3227-
Copyright &copy; 2024 - 2026 Weitao JIANG.
3228+
Copyright &copy; 2024 - 2026 Weitao JIANG. <br>
3229+
<a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer">京ICP备2025155858号-1</a> |
3230+
<a href="https://beian.mps.gov.cn/#/query/webSearch?code=11010802047067" rel="noreferrer" target="_blank">京公网安备11010802047067号</a> |
3231+
<a href="https://icp.gov.moe/?keyword=20268192" target="_blank">萌ICP备20268192号</a>
3232+
32283233
</div>
32293234

32303235

@@ -3263,6 +3268,16 @@ <h4 id="_25">负反馈分析</h4>
32633268
</div>
32643269
</footer>
32653270

3271+
<script>
3272+
document.addEventListener('DOMContentLoaded', function() {
3273+
const copyright = document.querySelector('.md-footer-copyright__highlight');
3274+
if (copyright) {
3275+
const beianHTML = ` | <a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">京ICP备2025155858号-1</a> | <a href="https://beian.mps.gov.cn/#/query/webSearch?code=11010802047067" rel="noreferrer" target="_blank" style="display: inline-flex; align-items: center; gap: 4px; text-decoration: none;"><img src="https://beian.mps.gov.cn/web/assets/logo01.6189a29f.png" alt="police" style="height: 14px; vertical-align: middle;">京公网安备11010802047067号</a> | <a href="https://icp.gov.moe/?keyword=20268192" target="_blank" style="text-decoration: none;">萌ICP备20268192号</a>`;
3276+
copyright.insertAdjacentHTML('afterend', beianHTML);
3277+
}
3278+
});
3279+
</script>
3280+
32663281
</div>
32673282
<div class="md-dialog" data-md-component="dialog">
32683283
<div class="md-dialog__inner md-typeset"></div>

0 commit comments

Comments
 (0)