Introduction 快速傅里叶变换(Fast Fourier Transform,FFT)是一种可在 \(O(n \log n)\) 时间内完成的离散傅里叶变换 (Discrete Fourier Transform,DFT) 的算法,用来实现将信号从原始域(通常是时间或空间)到频域的互相转化 ...
分类:
其他好文 时间:
2021-01-25 11:03:37
阅读次数:
0
前言 指数函数 对于指数函数 \(y=a^x\) 而言,我们必须限制其底数 \(a\) 的取值;否则可能出现“混乱局面”: ①若 \(a<0\),则对于 \(x\) 的某些数值,可使$ax$无意义,如$(-2){\frac{3}{4}}$在实数范围内函数无意义; 也可能出现一个自变量对应两个函数值的 ...
分类:
其他好文 时间:
2021-01-22 12:29:49
阅读次数:
0
逻辑回归实现 相关库引用 import tensorflow as tf import numpy as np import pandas as pd import matplotlib.pyplot as plt %matplotlib inline 加载数据 data = pd.read_csv ...
分类:
其他好文 时间:
2021-01-22 12:24:47
阅读次数:
0
KVM is an acronym of “Kernel based Virtual Machine”, and is a virtualization infrastructure for the Linux kernel that turns it into a hypervisor.It is ...
分类:
其他好文 时间:
2021-01-20 12:16:47
阅读次数:
0
线性回归实现 相关库引用 import tensorflow as tf import numpy as np import pandas as pd import matplotlib.pyplot as plt %matplotlib inline 加载数据 data = pd.read_csv ...
分类:
其他好文 时间:
2021-01-18 11:03:49
阅读次数:
0
<div style="display:inline-block;position:relative;"> <div style="position:absolute;right:2px;top:-2px;cursor:pointer;display:none;" class="input_clea ...
分类:
其他好文 时间:
2021-01-16 11:42:56
阅读次数:
0
Inline vs. block-level elements: a demonstration HTML (Hypertext Markup Language) elements historically were categorized as either "block-level" eleme ...
分类:
其他好文 时间:
2021-01-14 11:28:29
阅读次数:
0
第一次出现合法状态的期望时间可以转换为所有非法状态的出现概率乘以其在此处期望停留的时间。 设此非法状态抽了 \(r\) 张卡,那么其有 \(\binom{m}{r}^{-1}\) 的概率出现,经过 \(\frac{m}{m-r}\) 时间后会到达下一个状态。 只需要计数所有非法状态的数量即可。 对每 ...
分类:
其他好文 时间:
2021-01-12 10:48:35
阅读次数:
0
本题解与Luogu同步 Solution 很暴力的题目。 三角形面积公式 \(S=\frac{ah}{2}\) 因为高都是$1$, 所以我们直接枚举底的长度,然后把底的长度用$vis$数组表示出现过没,最后输出 一定要记得 多组数据还原变量! code #include<cstdio> #inclu ...
分类:
其他好文 时间:
2021-01-12 10:35:12
阅读次数:
0
题目链接 链接 翻译 给你 \(3\) 个多重集,第 \(i\) 个集合有 \(n[i]\) 个数字。 从两个不同集合中分别取出数字 \(x\) 和 \(y\),则从两个集合中分别删去 \(x\) 和 \(y\), 然后在第 \(1\) 个集合中(取出 \(x\) 的那个集合) 加入元素 \(x-y ...
分类:
其他好文 时间:
2021-01-12 10:28:03
阅读次数:
0