码迷,mamicode.com
首页 >  
搜索关键字:dot    ( 543个结果
animation渐进实现点点点等待效果
<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
[Javascript Crocks] Compose Functions for Reusability with the Maybe Type
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
2017-2018-2偏微分方程复习题解析6
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---画图线型、符号及颜色
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
wx小程序修改swiper 点的样式
.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
2018.4.24-ml笔记(多元线性回归)
numpy.dot作用于两个向量则是它们内积,作用于矩阵则是矩阵积。 RMSE解决量纲问题,即单位 RMSE会放大差值比较大的值,所以选用MSE更好。 ...
分类:其他好文   时间:2018-04-25 00:18:35    阅读次数:191
正则表达式3
[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数据的操作 * dot() multiply() 的区别
使用numpy时,跟matlab不同: 1、* dot() multiply() 对于array来说,* 和 dot()运算不同 *是每个元素对应相乘 dot()是矩阵乘法 对于matrix来说,* 和 multiply() 运算不同 * 是矩阵乘法 multiply() 是每个元素对应相乘 A B ...
分类:其他好文   时间:2018-04-07 17:48:14    阅读次数:1340
543条   上一页 1 ... 11 12 13 14 15 ... 55 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!