/images/avatar.png
点击    切换语言~

傅里叶变换的Parseval定理既然表示了一种守恒律,那么与之对应的对称性是什么?

Link: [https://www.zhihu.com/question/640869828/answer/3373753127] 抛砖引玉一下。 Fourier-Plancherel 算子 定义 Fourier-Plancherel 算子 $\mathcal{F} \in \mathcal{L}(L^2(\mathbb{R}))$ 为: $(\mathcal{F}\varphi)(p)=\frac{1}{\sqrt{2\pi}}\int_{\mathbb{R}}\mathrm{e}^{-ipx}\varphi(x)\mathrm{d}x$ 它实际上是个酉算子: $\mathcal{F}^\dag\mathcal{F}=\mathbb{I}_{L^2(\mathbb{R})}$ 而 Parseval 定理无非就是这一事实的重新表述: $\langle\varphi \mathcal{F}^\dag|\mathcal{F\varphi}\rangle=\langle\varphi|\mathcal{F}^\dag\mathcal{F}|\varphi\rangle=\langle\varphi|\varphi\rangle=1$ 这个定理似乎并未涉及到任何物理量

广义量子测量:POVM 简介

投影测量 传统意义上的(Von Neumann 意义上的)测量是一系列投影算符。对可观测量所对应的自伴算子进行谱分解 $O=\sum_i\lambda_i |\varphi_i\rangle\langle\varphi_i|$ ,即可得到这些投影算符 $|\varphi_i\rangle\langle\varphi_i|$ 。这一部分学过

Python 协程/异步IO

最近做项目用到 Python 协程/异步,现在总结一下: 导入 1 import asyncio 如果在 IPython 环境里使用,需要加两行: 1 2 3 import nest_asyncio nest_asyncio.apply() import asyncio 协程 协程(coroutines)是 Python 异步

给 Linux 增加 swapfile

Xilinx 的工具链也太占内存了,有时候会导致系统死机。。毕竟我这个小破本才 8G 内存。没办法,只能加虚拟内存了。 增加了 swapfile 之后就好很多了: 1 2 3 4 sudo swapoff /swapfile sudo

在 Windows 中挂载 EFI 分区的方法

为了在 Windows 中挂载 EFI 分区,我们可以在 PowerShell 中运行如下命令 1 2 3 4 5 6 diskpart list disk # make sure which is the disk that contains the EFI partition. usually 0 select disk 0 list partition # make sure which is the EFI partition. normally 0 select disk 0 assign letter=z 然后我