0
votes
0answers
38 views
Prove that a symmetric matrix with all eigen values 0 is essentially a 0 matrix [closed]
How can I prove this?
0
votes
0answers
37 views
Linear Independence Matrix
Suppose we have a m by n matrix A with rank m and a set K⊆{1..n} such that the columns of A indexed by K are linearly independent. Now we want to extend K and find a set L so that …
1
vote
4answers
88 views
Transforming captured co-ordinates into screen co-ordinates
Hi everyone. I think this is probably a simple maths question but I have no idea what's going on right now.
I'm capturing the positions of "markers" on a webcam and I have a list …
2
votes
5answers
74 views
How to get the plane out of a arbitrary collection of points?
I've got a arbitrary collection of 3d points, i know they're coplanar, but how do i calculate that plane?
1
vote
3answers
121 views
Clojure Matrix Representation
What is a good representation for matrices in Clojure? I'm interested in dealing with dense matrices of floating point numbers. The "list of lists" representation springs to mind, …
0
votes
1answer
62 views
CSS Transformation
Hello,
how can I change with CSS (-moz-transform) a div that should look like this:
2
votes
3answers
246 views
Solving a matrix in MATLAB?
How does one solve the (non-trivial) solution Ax = 0 for x in MATLAB?
A = matrix
x = matrix trying to solve for
I've tried solve('A * x = 0', 'x') but I only get 0 for an answe …
0
votes
3answers
92 views
“Cloning” row or column vectors
Hello,
Sometimes it is useful to "clone" a row or column vector to a matrix. By cloning I mean converting a row vector such as
[1,2,3]
Into a matrix
[[1,2,3]
[1,2,3]
[1,2,3]
…
2
votes
3answers
140 views
finding matrix through optimisation
I am looking for algorithm to solve the following problem :
I have two sets of vectors, and I want to find the matrix that best approximate the transformation from the input vecto …
13
votes
7answers
654 views
What are the most widely used C++ vector/matrix math/linear algebra libraries, and their cost and benefit tradeoffs?
It seems that many projects slowly come upon a need to do matrix math, and fall into the trap of first building some vector classes and slowly adding in functionality until they ge …
3
votes
3answers
154 views
What are your experiences with numerics libraries for C#, and which would you recommend?
By numerics library I mean a library providing data types such as matrices, vectors, and common (numerical) linear algebra algorithms. Optionally FTT and statistical algorithms.
I …
1
vote
1answer
75 views
Rotation about the Y-Axis
Doing a couple rotations in Matlab, one which is rotation about the y-axis, however online I've found two different answers: here and here. Which is correct, if both how does one g …
0
votes
1answer
132 views
Assistance Needed with Java Colt Matrix Package
Can anyone tell me how you can delete columns from a matrix using the Colt library?
TIA.
2
votes
5answers
139 views
C++ libraries for Image Segmentation
Hi,
I am going to do a project in Data Mining related to image clustering (in C++) .I am looking for a powerful library which is helpful in image processing, linear algebra and 3d …
0
votes
1answer
137 views
Sparse linear algebra solvers for C#
I'm working on an experimental implementation of Goldenthal et.al's inextensible cloth algorithm in C#.
First I used Math.NET Iridium to assemble and solve the matrices, but quic …
