摘要:
1. 连接数据库2. 授权并刷新权限grant all privileges on *.* to 'root'@'%' identified by 'password' with grant option;flush privileges;3. 查看用户数据 use mysqlselect user 阅读全文
摘要:
batch_first – If True, then the input and output tensors are provided as (batch, seq, feature) instead of (seq, batch, feature). Note that this does n 阅读全文
摘要:
```python def firstorder(T,K,t,In): # T 时间常数 # K 增益 Out = np.zeros(len(In)) for i in range(1,len(t)): dt = t[i]-t[i-1] s = T/dt Out[i] = K*In[i]/(s+1) 阅读全文