Feeds
提问
Construct adjacency list from an edge list.
I have an edge list ; [1 2 ; 2 1 ;2 3 ;3 2; 4 5;5 4] I need to construct an adjacency list from this edge list. Output : 2; ...
12 years 前 | 0 个回答 | 0
0
个回答提问
Construct adjacency list from an adjacency matrix
I have an adjacency matrix :- E.g A =[0 1 1;1 0 0; 1 0 0]; output : 2 3 1 1 I want to create an adjacency list...
12 years 前 | 1 个回答 | 0
1
个回答提问
SVM-RFE (Recursive Feature Elimination with Libsvm /Liblinear)
I was wondering if there is a matlab implementation available for SVM-RFE with Liblinear or Libsvm.
12 years 前 | 0 个回答 | 1
0
个回答提问
Fast computation of diagonal elements
I have two matrices, A of size m-by-n and B of size m-by-m. I need to quickly compute the digonal elements of (A'*B*A). Here m...
12 years 前 | 3 个回答 | 1
3
个回答提问
QP with quadratic constraints using fmincon
I have to compute an objective function asfollows : min q(y) = 0.5*y'*Q*y + f'y subject to norm(y,2)=1 I am using...
12 years 前 | 1 个回答 | 0
1
个回答提问
computing SVD of very large matrix
Hi, I have a very large matrix 1.1 million rows and 1100 columns. I want to compute SVD of this matrix. It is not possible t...
14 years 前 | 2 个回答 | 0
