码迷,mamicode.com
首页 >  
搜索关键字:confusion matrix    ( 4333个结果
[Bhatia.Matrix Analysis.Solutions to Exercises and Problems]Contents
[Bhatia.Matrix Analysis.Solutions to Exercises and Problems]ExI.1.3Use the QR decomposition to prove Hadamard's inequality: if $X=(x_1,\cdots,x_n)$, t...
分类:其他好文   时间:2014-11-16 11:58:53    阅读次数:153
[Bhatia.Matrix Analysis.Solutions to Exercises and Problems]ExI.1.3
Use the QR decomposition to prove Hadamard's inequality: if $X=(x_1,\cdots,x_n)$, then $$\bex |\det X|\leq \prod_{j=1}^n \sen{x_j}. \eex$$ Equality ho...
分类:其他好文   时间:2014-11-16 11:54:28    阅读次数:107
[Bhatia.Matrix Analysis.Solutions to Exercises and Problems]ExI.1.2
Let $X$ be nay basis of $\scrH$ and let $Y$ be the basis biorthogonal to it. Using matrix multiplication, $X$ gives a linear transformation from $\bbC...
分类:其他好文   时间:2014-11-16 11:53:20    阅读次数:169
Search a 2D Matrix
你能用最快的速度找到矩阵中是否有我们想要的值吗。例如:1 2 34 5 67 8 9target = 9,return true,target=10,return false。ps:矩阵升序(左到右,上到下),但不一定是连续数字。解法:两次二分。1. 一次二分找到给定的target可能在第几行2. ...
分类:其他好文   时间:2014-11-15 18:29:01    阅读次数:175
[Leetcode] Search a 2D Matrix
Write an efficient algorithm that searches for a value in anmxnmatrix. This matrix has the following properties:Integers in each row are sorted from l...
分类:其他好文   时间:2014-11-15 18:23:59    阅读次数:165
什么是矩阵?
前一阵找工作的时候,经常有人问我数学怎么样。有些问的比较笼统,有些问的比较具体。比如有个人问我,你了解矩阵吗?我说不了解。在看《3D数学基础》之前,矩阵给我的感觉就跟黑客帝国差不多。为此我特意上easyicon下了个matrix的图标当头像,感觉就是酷。那到底矩阵是什么? 如果现在有人问我,你...
分类:其他好文   时间:2014-11-15 14:01:01    阅读次数:149
Set Matrix Zeroes 将矩阵置零
给定一个矩阵,把零值所在的行和列都置为零。例如:1 2 31 0 31 1 1操作之后变为1 0 30 0 01 0 1方法1:赋值另存一个m*n的矩阵,在原矩阵为零的值相应置新的矩阵行和列为零。额外空间为O(m*n).方法2:两个数组,bool[m] 和 bool[n] 分别存某行有零,后者某列有...
分类:其他好文   时间:2014-11-15 12:52:48    阅读次数:284
[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?Solution:public cla...
分类:其他好文   时间:2014-11-14 17:15:48    阅读次数:159
Python SciPy Sparse模块学习笔记
1.sparse模块的官方document地址:http://docs.scipy.org/doc/scipy/reference/sparse.html2.sparse matrix的存储形式有很多种,见此帖子http://blog.csdn.net/anshan1984/article/deta...
分类:编程语言   时间:2014-11-13 12:25:23    阅读次数:413
python 之 theano学习:
(1)theano主要支持符号矩阵表达式(2)theano与numpy中都有broadcasting:numpy中是动态的,而theano需要在这之前就知道是哪维需要被广播。针对不同类型的数据给出如下的一张表,基本类型包括scalar、vector、row、col、matrix、tensor3、te...
分类:编程语言   时间:2014-11-13 10:48:58    阅读次数:293
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!