public class FileStreamResult : IHttpActionResult { readonly Stream _stream; readonly string _mediaType = "application/octet-stream"; readonly string ...
泛型 1.为什么要使用泛型 集合容器类在设计阶段/声明阶段不能确定这个容器实际上存放的是什么类型的数据,在jdk5.0之前只能设计为Object类型,在jdk5,0之后使用泛型来解决。因为这个时候除了元素的类型是不确定的,其他部分是确定的,比如如何保存、如何管理等。因此此时把元素的类型设计为一个参数 ...
分类:
编程语言 时间:
2021-03-18 14:34:45
阅读次数:
0
1. 打开官方文档 https://router.vuejs.org/zh/installation.html 安装: npm i vue-router -S import Vue from 'vue' import app from './App.vue' // 导入 vue-router imp ...
分类:
Web程序 时间:
2021-03-16 11:52:19
阅读次数:
0
#home { margin: 0 auto; width: 65%;/*原始65*/ min-width: 980px;/*页面顶部的宽度*/ background-color: rgba(245, 245, 245, 0.5); padding: 30px; margin-top: 50px; ...
分类:
其他好文 时间:
2021-03-15 11:21:43
阅读次数:
0
目录 引言 1 背景 2 什么是最优运输? 3 基本概念 3.1离散测度 (Discrete measures) 3.2蒙日(Monge)问题 3.3 Kantorovich Relaxation (松弛的蒙日问题) 3.4 Wasserstein距离 3.5最优运输问题初解 3.6 熵(Entro ...
分类:
其他好文 时间:
2021-03-15 10:35:23
阅读次数:
0
| ## 一、Python模块定义与分类 | | | | ### 1.1、定义 | | | | 把一些常用的函数放在一个py文件中,这个文件就称之为模块,模块,就是一些列常用功能的集合体 | | | | ### 1.2、为什么使用模块 | | | | 1)通常将程序分成一个个的文件,这样做程序的结构 ...
分类:
编程语言 时间:
2021-03-09 13:50:42
阅读次数:
0
1.有关平均值的一个技巧 判断一个区间$a_n~a_m$的平均值avg是否大于一个数b,可等价为判断前缀和数组中$s_m$与$s_$的大小关系 证明: \(avg = \frac{\displaystyle \sum_{n \ \leq i \ \leq \ m}a[i]}{m - n + 1}\) ...
分类:
其他好文 时间:
2021-03-06 14:48:08
阅读次数:
0
引入 求两个多项式的卷积 Description 给定两个多项式 \(F\left(x\right), G\left(x\right)\) 的系数表示法,求两个多项式的卷积。 如: \(F\left(x\right) = 2x + 1\) \(G\left(x\right) = x^2 + 2x + ...
分类:
其他好文 时间:
2021-03-01 13:07:46
阅读次数:
0
SVG 意为可缩放矢量图形(Scalable Vector Graphics)。 SVG 使用 XML 格式定义图像。 svg 的子标签 矩形<rect>、 圆形<circle> 椭圆 <ellipse> 线 <line> 路径 <path> 多边形 <polygon> 折线 <polyline> ...
分类:
其他好文 时间:
2021-02-27 13:04:16
阅读次数:
0
lab2 word2vec part 1 了解word2vec 在word2vec中,通过矢量点积和应用softmax函数 \[ P(O=o,C=c) = \frac{\exp(u_o^T)}{\sum_{w\in Vocab}\exp(u_w^Tv_c)} \] 这其中$u_0$是词 \(o\) ...
分类:
其他好文 时间:
2021-02-27 13:00:46
阅读次数:
0