最新 最热

【leetcode刷题】T23-最大矩形

Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing only 1's and return its area.

2019-07-18
1

马尔科夫链

[ begin{matrix} & sunny & cloudy & raining \ sunny & 0.2 & 0.3 & 0.5 \ cloudy & 0.1 & 0.6 & 0.3 \ raining & 0.4 & 0.5 & 0.1 \ end{matrix} ]

2019-07-01
0

【论文】Exploiting Emotion on Reviews for Recommender Systems

Given the rating matrix R and emotion E towards others’ reviews, we aim to find a recommender system to infer missing values in R.

2019-07-01
0

leetcode ​# 54:Spiral Matrix 螺旋矩阵

Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral order.

2019-06-25
1

word2vec

版权声明:本文为博主原创文章,转载请注明出处。 https://blog.csdn.net/u012436149/article/details/53214016

2019-05-28
1

线性代数——(3)矩阵

线性变换1 直线依旧是直线 2 原点必须保持固定矩阵定义Matrix方阵image.png上三角和下三角image.png对角矩阵image.png矩阵相等image.png矩

2019-05-28
0

二值网络--TBN: Convolutional Neural Network with Ternary Inputs and

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/zhangjunhit/article/details/90054941

2019-05-27
1

图像拼接--Fish-Eye Lenses-Based Camera Calibration and Panoramic Image Stitching

A. Geometric alignment stage 几何对齐阶段 首先进行离线相机标定,基于文献【9】中算法,使用鱼眼相机拍摄标定棋盘,然后计算相机的内外参数 ,基于得到的相机参数,对图像进行校正...

2019-05-27
1

从零开始一起学习SLAM | 三维空间刚体的旋转

刚体,顾名思义,是指本身不会在运动过程中产生形变的物体,如相机的运动就是刚体运动,运动过程中同一个向量的长度和夹角都不会发生变化。刚体变换也称为欧式变换。...

2019-05-26
1

R语言包_Matrix

稀疏矩阵在数据稀疏的情况下节省了空间library(Matrix)m1 <- matrix(0, nrow = 1000, ncol = 1000)m2 <- Matrix(0, nrow = 1000, ncol = 1000, sparse = TRUE)m3 <- Matrix(0, nrow = 100......

2019-05-26
0