<style> @keyframes dot { 0% { width: 0; } 33% { width: .2em; } 66% { width: .5em; } 100% { width: .8em; } } .dot { display: inline-block; width: 20px; ...
分类:
其他好文 时间:
2018-05-18 15:37:25
阅读次数:
152
struct point { double x,y; }a[Max]; double chaji(point p1,point p2) { return p1.x*p2.y-p1.y*p2.x; } double dot(point p1,point p2) { return p1.x*p2.x-p... ...
分类:
其他好文 时间:
2018-05-15 00:35:48
阅读次数:
192
We can dot-chain our way to great success with an instance of Maybe, but there are probably cases where you need to apply the same series of transform ...
分类:
编程语言 时间:
2018-05-14 20:44:31
阅读次数:
197
Problem: If $a$ is a smooth homogeneous function of degree $m$, show that $$\bex |\dot \lap_ju(x)|\leq C2^{jm}(Mu)(x), \eex$$ where $$\bex (Mf)(x)=\su ...
分类:
其他好文 时间:
2018-05-11 23:16:12
阅读次数:
195
Matlab 画图 线形、颜色、数据点形状的选择 1,线形 - Solid line (default)-- Dashed line: Dotted line-. Dash-dot line 2,颜色 r Redg Greenb Bluec Cyanm Magentay Yellowk Blackw ...
分类:
其他好文 时间:
2018-05-08 14:39:30
阅读次数:
175
.swiper-box .wx-swiper-dots.wx-swiper-dots-horizontal{ margin-bottom: 2rpx; } .swiper-box .wx-swiper-dot{ width:40r... ...
分类:
其他好文 时间:
2018-05-08 14:27:07
阅读次数:
1499
插件,jquery.query.js /** * jQuery.query - Query String Modification and Creation for jQuery * Written by Blair Mitchelmore (blair DOT mitchelmore AT gma ...
分类:
其他好文 时间:
2018-05-04 14:26:01
阅读次数:
187
numpy.dot作用于两个向量则是它们内积,作用于矩阵则是矩阵积。 RMSE解决量纲问题,即单位 RMSE会放大差值比较大的值,所以选用MSE更好。 ...
分类:
其他好文 时间:
2018-04-25 00:18:35
阅读次数:
191
[dn]ot? 字母“d”或者“n”,后面跟着一个“o”,然后是最多一个“t”,例如:do、no、dot、not 0?[1-9] 任何一个数值数字,它可能前置一个“0" [0-9]{15,16} 匹配15或者16个数字(例如信用卡号码) </>[^>]+> 匹配全部有效的(和无效的)HTML标签 \ ...
分类:
其他好文 时间:
2018-04-20 20:49:16
阅读次数:
252
使用numpy时,跟matlab不同: 1、* dot() multiply() 对于array来说,* 和 dot()运算不同 *是每个元素对应相乘 dot()是矩阵乘法 对于matrix来说,* 和 multiply() 运算不同 * 是矩阵乘法 multiply() 是每个元素对应相乘 A B ...
分类:
其他好文 时间:
2018-04-07 17:48:14
阅读次数:
1340