码迷,mamicode.com
首页 >  
搜索关键字:confusion matrix    ( 4333个结果
Python--线性代数篇
讲解Python在线性代数中的应用,包括:一、矩阵创建先导入Numpy模块,在下文中均采用np代替numpy1 import numpy as np矩阵创建有两种方法,一是使用np.mat函数或者np.matrix函数,二是使用数组代替矩阵,实际上官方文档建议我们使用二维数组代替矩阵来进行矩阵运算;...
分类:编程语言   时间:2015-11-16 18:59:37    阅读次数:519
R语言实战读书笔记(二)创建数据集
2.2.2 矩阵matrix(vector,nrow,ncol,byrow,dimnames,char_vector_rownames,char_vector_colnames)其中:byrow=TRUE/FALSE,表示按行填充还是按列填充,默认情况下是按列填充2.2.4 数据框1.attach,...
分类:编程语言   时间:2015-11-15 10:56:21    阅读次数:429
LeetCode "Range Sum Query 2D - Immutable"
Yes the accu* is not necessary :)class NumMatrix { vector> dp;public: NumMatrix(vector> &matrix) { int h = matrix.size(); if(!h) ret...
分类:其他好文   时间:2015-11-14 11:07:43    阅读次数:468
Leetcode Rotate Image
You are given annxn2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Follow up:Could you do this in-place?解题思路:将每个[i, j]对应旋转对...
分类:其他好文   时间:2015-11-13 14:33:27    阅读次数:186
Leetcode Set Matrix Zeroes
Given amxnmatrix, if an element is 0, set its entire row and column to 0. Do it in place.click to show follow up.Follow up:Did you use extra space?A s...
分类:其他好文   时间:2015-11-13 06:30:03    阅读次数:333
Android基础入门教程——8.3.18 Canvas API详解(Part 3)Matrix和drawBitmapMash
在Canvas的API文档中,我们看到这样一个方法:drawBitmap(Bitmap bitmap, Matrix matrix, Paint paint) 这个Matrix可是有大文章的,前面我们在学Paint的API中的ColorFilter中曾讲过ColorMatrix 颜色矩阵,一个4 * 5 的矩阵,我们可以通过修改矩阵值来修改色调,饱和度等! 而今天讲的这个Matrix可以结合其他API来控制图形...
分类:移动开发   时间:2015-11-12 11:55:02    阅读次数:365
[LeetCode] Search a 2D Matrix II
Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties: Integers in each row are sorted in ascending from left to right. Integers in each co...
分类:其他好文   时间:2015-11-11 16:42:00    阅读次数:238
LeetCode -- Set Matrix Zeroes
LeetCode -- Set Matrix Zeroes...
分类:其他好文   时间:2015-11-11 01:16:25    阅读次数:260
[ActionScript 3.0] AS3实现滤镜叠加效果
import flash.display.BitmapData;import flash.filters.BlurFilter;import flash.geom.ColorTransform;import flash.geom.Matrix;addChild(new Bitmap(overlapF...
分类:其他好文   时间:2015-11-09 18:30:56    阅读次数:298
A geometric interpretation of the covariance matrix
IntroductionIn this article, we provide an intuitive, geometric interpretation of the covariance matrix, by exploring the relation between linear tran...
分类:其他好文   时间:2015-11-09 07:05:38    阅读次数:308
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!