Linear Algebra is a core body of mathematics that has extensive applications in computer graphics, economics, engineering, and control systems. Key topics: matrix, vector, simultaneous system of linear equations, diagonal form, eigenvalues, eigenvectors, projections, points, lines, planes, ...
1
vote
1answer
15 views
Numpy - Dot Product of a Vector of Matrices with a Vector of Scalars
I have a 3 dimensional data set that I am trying to manipulate in the following way.
data.shape = (643, 2890, 10)
vector.shape = (643,)
I would like numpy to see data as a 643 length 1-D array of ...
1
vote
0answers
8 views
conjugate gradient with a positive semidefinite matrix
I'm working on conjugate gradient to solve Ax=b when A is symmetric and positive semidefinite.
When A is symmetric and positive semidefinite, is (A+\lambda I), where \lambda is positive and I is an ...
0
votes
3answers
28 views
Checking whether a matrix is SPD
What will be the quickest (run time) way to check whether a matrix is symmetric positive definite in Matlab? I have run this test for a large number of sparse matrices whose size (dimension) varies ...
1
vote
1answer
31 views
Linear Independence of Large Sparse Matrices in R
I have three large matrices: I, G, and G^2. These are 4Million x 4Million matrices and they are sparse. I would like to check if they are linearly independent and I would like to do this in R.
For ...
-1
votes
0answers
22 views
variation of hungarian algorithm [closed]
Can someone suggest an algorithm to solve job assignment problem with condition?
With condition means that some jobs cannot be done by some workers. For example table as shown below:
In this table ...
3
votes
1answer
72 views
Which C++ libraries should I use for a large parallel computing number-crunching project exploiting third-party applications
Introduction
I want to request a lot of advice on a new programming project I am going to start on my own. I am going to be very precise in what I would like to accomplish and in what my basic ...
0
votes
2answers
45 views
opengl - Rotating around a sphere using vectors and NOT glulookat
I'm having an issue with drawing a model and rotating it using the mouse,
I'm pretty sure there's a problem with the mathematics but not sure .
The object just rotates in a weird way.
I want the ...
3
votes
1answer
35 views
General product of multiple tensors in python
In python (preferrably under numpy array framework), what is the best way to do product of multiple tensors at once, instead of doing it one-by-one using numpy.tensordot? Let's suppose we need to do ...
0
votes
2answers
25 views
Subtract a constant from a vector's magnitude (shorten the vector) without using square root?
I have a 2 dimensional vector V represented with integers, and I subtract a constant C from V's magnitude and get a vector W that has the same direction as V but obviously the magnitude of |V| minus ...
2
votes
1answer
37 views
How does numpy.linalg.inv calculate the inverse of an orthogonal matrix?
I'm implementing a LinearTransformation class, which inherits from numpy.matrix and uses numpy.matrix.I to calculate the inverse of the transformation matrix.
Does anyone know whether numpy checks ...
0
votes
1answer
24 views
matrix norm that is invariant through a change of basis
I am looking for matrix norms that would be invariant through a change of basis. I know only about the Frobenius norm, which satisfy this condition as it can be expressed as a function of the ...
0
votes
0answers
35 views
Unimodality constraint with Microsoft Solver Foundation
I am using Microsoft Solver Foundation (MSF) to solve an Ax = b problem where x is positive. I want to add the additional constraint of "unimodality", i.e. x increases monotonically to some maximum ...
3
votes
1answer
46 views
Vectorizing multiple vector-matrix multiplications in NumPy
I am having trouble figuring out how to arrange my axes so I can perform the following operations in a vectorized way.
Essentially I have an array of vectors, an array of matrices, and I want to ...
1
vote
1answer
77 views
Solving linear equation in C++ / Eigen
I am trying to program an algorithm in C + +, I use the Eigen library.
The problem is that I need to solve the following equation in C + +:
Find the coefficients: s1,..., sn ∈ R such that a(-1)ψi = ...
2
votes
1answer
34 views
Power Method - Non converging system
I am creating a risk parity process, where I need to use a Power method, it is an iterative process to find the eigen values of a system.
The aim is to find to the weight in eaach asset that you are ...
1
vote
1answer
68 views
Generating Positive definite matrix of dimensions 8x8
I am trying to generate a positive definite matrix (A'*A) of dimensions 8x8.
where A is 1x8.
I tried it for many randomly generated matrix A but not able to generate it.
octave-3.6.1.exe:166> A= ...
2
votes
3answers
91 views
How to get euclidean distance on a 3x3x3 array in numpy
say I have a (3,3,3) array like this.
array([[[1, 1, 1],
[1, 1, 1],
[0, 0, 0]],
[[2, 2, 2],
[2, 2, 2],
[2, 2, 2]],
[[3, 3, 3],
[3, 3, 3],
...
4
votes
2answers
62 views
Operations on huge dense matrices in numpy
For the purpose of training a neural network, at some point I have a huge 212,243 × 2500 dense matrix phi, and vectors y (212243) and w (2500), which are stored as numpy arrays of doubles. What I'm ...
0
votes
1answer
75 views
??? Undefined function or method 'det' for input arguments of type 'double' and attributes 'full 3d real
for j=1:length(idf)
dx = xf(1,j)- xv(1);
dy = xf(2,j)- xv(2);
d2 = dx^2 + dy^2;
d = sqrt(d2);
Z_est(:,j) = [d;atan2(dy,dx)-xv(3)];
S(:,:,j) = Hf(:,:,j) * pf(:,:,j) * Hf(:,:,j)' + R
...
0
votes
0answers
39 views
Invert a Covariance Matrix in VBA in order to solve a Matrix equation
I would like to solve an equation where I need to invert a Covariance matrix with VBA. The process of the study is as follow :
I need to calculate the vector X
X = M(inverted) * 1 / (1(transposed) ...
0
votes
2answers
19 views
Linear Equations
I have a program in C# that asks the user for the 4 values.
They are:
MinIndex, MaxIndex, MinValue, MaxValue
I want to be able to determine the value for any given index within the [MinIndex ...
0
votes
1answer
45 views
Does Intel MKL support Armadilo, Eigen or Biltz++?
I mean: can it define some array like Blitz++ does (I am looking for similar simple syntax, no need to be exactly the same.):
Array<double, 3> A(NX,NY,NZ)
Thanks.
I heard that the Armadilo, ...
-2
votes
1answer
42 views
Solve Linear system of Equations [closed]
I have a system of equations of the following form.
constant + C.x + D.y = P
where C and D are 25*4 matrices. x and y are 4*1 matrices and P is a 25*1 matrix. Can anybody explain to me how to ...
-2
votes
0answers
37 views
I need resolve a linear system with matlab [closed]
I have to solve a linear system with the following properties:
Ax = b;
A = pascal(n)
b = rand(n; 1);
using factorization methods.
I'm lost, where should I start?
0
votes
1answer
35 views
Vector.Multiply ignores offset values of matrix
My understanding of the WPF transformation classes is that the Matrix class represents a 3x3 row-major matrix of 2D homogenised coordinates where the final column is always (0,0,1). I understand that ...
2
votes
1answer
91 views
How can I improve the speed of this Strassen Algorithm implementation? [closed]
I'm struggling to determine why my Strassen implementation is so slow. It allocates memory with each iteration, but I'm freeing it all as appropriate.
int** multiply(int** a, int** b, int size)
{
int ...
0
votes
3answers
183 views
Solving a linear equation in one variable
What would be the most efficient algorithm to solve a linear equation in one variable given as a string input to a function? For example, for input string:
"x + 9 – 2 - 4 + x = – x + 5 – 1 + 3 – ...
-3
votes
0answers
50 views
Pohst Enumeration Code [closed]
This is sorta an advanced question. I'm not that into linear algebra in general, but I'm supposed to implement the pseudo code of the Pohst enumeration algorithm which was published in "on ...
0
votes
1answer
32 views
adjusting the speed of movement
My task is to convert a movement from a straight path to a curved path.
the starting and ending points are given as well as the starting time and speed.
$ns_ at 2.000000000000 "$node_(0) setdest ...
0
votes
1answer
21 views
Detecting Matlab failure to solve sparse linear system
I want to programmatically find out when A\b failed (for sparse A) so that I can run some problem-specific logic. Using the backslash operator
A\b
I get warnings printed to the console but I want ...
0
votes
2answers
88 views
Fast way in Matlab to compute inverse of big matrix 10800x10800?
I have a matrix of size 10800x10800 in Matlab and I compute its inverse
directly with the function:
inv(A)
It takes 3 to 4 minutes just one such computation. And that is part of an
iterative ...
-1
votes
1answer
47 views
Domains and Ranges of sets in algebra
State whether the following functions are well-defined. If they are, then give the Domain, Co-domain and Range and state whether the functions are one-to-one and/or onto and give your reasoning. If ...
0
votes
1answer
26 views
how could I know which dimensions are the principle component? [duplicate]
I use matlab's princomp function to do PCA.
From my understanding, I could check the latent to decide how many dimensions I need.
[coeff, score, latent, t2] = princomp(fdata);
...
4
votes
2answers
109 views
Java Tetris - Rotations using Rotation Matrices
I'm building Tetris in Java and am trying to use linear algebra to rotate a piece composed of 4 tiles.
My friend was explaining the way to do it is:
He said:
"To clarify, you do need to rotate ...
0
votes
1answer
80 views
Forward substitution of lower triangular matrix. How?
Not sure if this is the right place to ask but here goes.
Does anyone know how the following code is able to solve for x Lx=y where L and y are a given matrix and a vector, respectively?
If you ...
0
votes
1answer
53 views
What is the point of intersection between a parametric and a cartesian line?
I have two staright lines.
One in parametric form:
L1 = {
(x = x1 + t.a1),
(y = y1 + t.b1),
(z = z1 + t.c1)
}
And the other one is a cartesian line segment:
L2 = {
(px1, py1, pz1),
...
0
votes
0answers
14 views
Dynamics of an Aerial Camera System
I currently have a 3D camera setup for my OpenGL application. There are a few problems though, and to gain a better understanding I've been going through @NicolBolas' Getting Oriented (the sections ...
1
vote
1answer
65 views
Matrix library for large matrices?
Is there any C++ matrix library for large matrices(matrices that can't fit in RAM)?
Or maybe some library that is designed to handle with large matrices and more faster relative to basic matrix ...
2
votes
2answers
69 views
Linear least squares in scipy - accuracy of QR factorization vs other methods
I have tried solving a linear least squares problem Ax = b in scipy using the following methods:
x = numpy.linalg.inv(A.T.dot(A)).dot(A.T).dot(b) #Usually not recommended
and
x = ...
2
votes
1answer
93 views
GCC Optimization flags in for matrix operations
I am performing matrix operations using C. I would like to know what are the various compiler optimization flags to improve speed of execution of these matrix operations for double and int64 data - ...
0
votes
1answer
62 views
How to do Gaussian elimination in R (do not use “solve”)
A <- matrix(c(2,-5,4,1,-2.5,1,1,-4,6),byrow=T,nrow=3,ncol=3)
b <- matrix(c(-3,5,10),nrow=3,ncol=1)
p <- nrow(A)
U.pls <- cbind(A,b)
for (i in 1:p){
for (j in (i+1):(p+1)) U.pls[i,j] ...
0
votes
2answers
48 views
Find polynomial function from set of points
i have a lot of point-sets. all having a x and a y coordinate. what i need is a way in vb.net to find out a polynomial function that describes as closely as possible these points. does anybody have an ...
2
votes
3answers
270 views
Finding the line along the the intersection of two planes
I am trying to draw the line formed by the intersections of two planes in 3D, but I am having trouble understanding the math, which has been explained here and here.
I tried to figure it out myself, ...
1
vote
0answers
28 views
OpenMaple Java Interface
I am trying to use OpenMaple with Java interface to simply turn a matrix into reduced row echelon form. Ultimately I want to find the inverse of a matrix. I am not sure how to take a 2-d array in my ...
-2
votes
1answer
46 views
Linear programming model
I have the following taks.
Optimal portfolio problem
A finacial adviser is supposed to advise a client an adequate structure of investments. The client is a retired teacher having a stable views on ...
1
vote
1answer
45 views
logm function of hermitian matrix returns non-hermitian matrix
When I use the linear algebra module in scipy to calculate the matrix logarithm of a hermitian matrix, the matrix that it outputs isn't hermitian. I first define a vector using:
n = ...
2
votes
2answers
82 views
Formatting a txt file of equations into the same format and then manipulating them for linear algebra calculations in Python
I'm looking for an universal way of transforming equations in Python 3.2. I've only recently begun playing around with it and stumbled upon some of my old MATLAB homework. I'm able to calculate this ...
1
vote
2answers
73 views
Finding coordinates of Hexagonal path
I am trying to convert a movement along a straight line ( 2 points) to a movement along Hexagonal path, I tried different formula and did not work.
I would like to find out the coordinates of ...
1
vote
1answer
44 views
Concatenate nested array to vector?
Given I have an array like this:
array = [Array[8], Array[8], Array[8], ...]
# array.length is 81; each octet represents a point on a 9x9 grid
where each nested array contains 8 numeric elements ...
1
vote
1answer
80 views
How to change elements in sparse matrix in Python's SciPy?
I have built a small code that I want to use for solving eigenvalue problems involving large sparse matrices. It's working fine, all I want to do now is to set some elements in the sparse matrix to ...








