①add对应元素相加 ②subtract对应元素相减 ③数组元素相乘 ④divide、floor_divide除法和向下取整(丢弃余数) ⑤power幂函数 ⑥maximum、fmax返回两个数组较大者组成的数组 ⑦mod取余 ⑧greater、greater_equal、less、less_equ ...
分类:
其他好文 时间:
2020-01-11 09:47:41
阅读次数:
94
Supplementary knowledge: 1. sensitivity analysis; 敏感度分析 sensitivity analysis is the study of how the uncertainty in the output of a mathematical model ...
分类:
Web程序 时间:
2020-01-11 09:43:50
阅读次数:
104
《无声胜有声》 Stillness SpeaksThoughts, emotions, sense perceptions, and whatever you experience make up the content of your life.思想、情绪、感知,和你所经历的一切组成了你的生命的内... ...
分类:
其他好文 时间:
2020-01-10 10:32:21
阅读次数:
236
VUE官网 VUE学习 sublime 属性绑定:v-bind:属性名 简写为 :属性名 双向绑定:v-model 属性计算:compute 监听器 : watch 判断 :v-show、v-if 前者不显示时只是隐藏DOM,后者不显示时是删除DOM 循环 :v-for 组 件: 每一个组件都是Vu ...
分类:
其他好文 时间:
2020-01-09 19:14:08
阅读次数:
86
最近闲来无事,就估摸着自己写个“服务注册中心”来玩,当然因为是个人写的,所以一般都是简洁版本。 代码地址在:https://gitee.com/zhxs_code/my-service-register.git 由于在处理与网络数据时,为了性能,想到用AIO来实验,结果发现AIO整个思路与之前的BI ...
分类:
其他好文 时间:
2020-01-09 13:38:36
阅读次数:
86
标签、事件、属性 下面展示可以执行XSS的标签、事件、属性 标签 Chrome下srcdoc属性 JS代码注入,意味着无需\ html ?query%5Border_No%5D=&query%5Bm obile%5D=%27%2balert %2b%27 ?query[order_No]=&quer ...
分类:
其他好文 时间:
2020-01-06 22:41:03
阅读次数:
120
本文主要介绍采用RecyclerView配合PagerSnapHelper实现短视频滑动播放内容。 1. 主页内容构建 主页布局文件定义RecyclerView,为RecyclerView建立对应适配器。 适配器条目中添加视频播放容器FrameLayout及封面ImageVIew. 2.定义Recy ...
分类:
移动开发 时间:
2020-01-06 21:21:53
阅读次数:
105
记录片地址: https://www.bilibili.com/video/av12305983?from=search&seid=13170686018730939203 记录片一: 《和子由渑池怀旧》 (苏轼) 人生到处知何似?应似飞鸿踏雪泥。 泥上偶然留指爪,鸿飞那复计东西。 老僧已死成新塔, ...
分类:
其他好文 时间:
2020-01-04 16:09:55
阅读次数:
71
Problem Statement Invert a binary tree. Example: Input: 4 / \ 2 7 / \ / \ 1 3 6 9 Output: 4 / \ 7 2 / \ / \ 9 6 3 1 Trivia: This problem was inspired ...
分类:
其他好文 时间:
2020-01-04 10:29:05
阅读次数:
86
表2-2: NumPy实现的算术运算符 运算符 对应的通用函数 描述 + np.add 加法运算(即 1 + 1 = 2) - np.subtract 减法运算(即 3 - 2 = 1) - np.negative 负数运算( 即 -2) * np.multiply 乘法运算(即 2 \* 3 = ...
分类:
其他好文 时间:
2020-01-03 21:22:53
阅读次数:
81