Tagged Questions
A matrix is a rectangular array of data.
53
votes
15answers
3k views
Help with interview question
I was asked this question on in a recent Java telephonic interview:
You are given an NxN binary (0-1) matrix with following properties:
Each row is sorted (sequence of 0's followed by sequence of ...
36
votes
17answers
14k views
Performance of Java matrix math libraries?
We are computing something whose runtime is bound by matrix operations. (Some details below if interested.) This experience prompted the following question:
Do folk have experience with the ...
34
votes
20answers
19k views
How do you rotate a two dimensional array?
Inspired by Raymond Chen's post, say you have a 4x4 two dimensional array, write a function that rotates it 90 degrees. Raymond links to a solution in pseudo code, but I'd like to see some real world ...
29
votes
2answers
1k views
How can I index a MATLAB array returned by a function without first assigning it to a local variable?
For example, if I want to read the middle value from magic(5), I can do so like this:
M = magic(5);
value = M(3,3);
to get value == 13. I'd like to be able to do something like one of these:
value ...
26
votes
9answers
6k views
Matrix Multiplication in Clojure vs Numpy
I'm working on an application in Clojure that needs to multiply large matrices and am running into some large performance issues compared to an identical Numpy version. Numpy seems to be able to ...
23
votes
2answers
800 views
How to efficiently search in an ordered matrix?
I have a x by y matrix, where each row and each column are in ascending order as given below.
1 5 7 9
4 6 10 15
8 11 12 19
14 16 18 21
How to search this matrix for a number ...
20
votes
3answers
3k views
A Transpose/Unzip Function in Python
I have a list of 2-item tuples and I'd like to convert them to 2 lists where the first contains the first item in each tuple and the second list holds the second item.
For example:
original = [('a', ...
19
votes
3answers
580 views
How to rotate a table 45 degrees and save the result into another table?
I have a table.
---------
| a | b |
---------
| a | b |
---------
I want to rotate it 45 degrees(clockwise or anti-clockwise) and save it into another table. For example, if I rotate it 45 degrees ...
18
votes
3answers
671 views
How to translate this Math Formula in PHP?
I'm trying to convert a Math Formula into PHP code.
You can see the formula in the accepted answer here: Applying a Math Formula in a more elegant way (maybe a recursive call would do the trick).
...
18
votes
15answers
2k views
From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining values
Given an n×n matrix of real numbers. You are allowed to erase any number (from 0 to n) of rows and any number (from 0 to n) of columns, and after that the sum of the remaining entries is computed. ...
18
votes
6answers
2k views
What is SVD(singular value decomposition)
How does it actually reduce noise..can you suggest some nice tutorials?
17
votes
11answers
1k views
Matrix transforms; concepts and theory, are there any free resources for learning practically?
I've been having fun rendering charts and graphs from co-ordinates lately, and I'm fascinated by using matrices to transform co-ordinate spaces.
I've been able to successfully scale and invert 2 ...
17
votes
7answers
3k views
Looping in a spiral
A friend was in need of an algorithm that would let him loop through the elements of an NxM matrix (N and M are odd). I came up with a solution, but I wanted to see if my fellow SO'ers could come up ...
16
votes
3answers
1k views
How to solve this linear programing problem?
I'm not so good at linear programing so I'm posting this problem here.
Hope somebody can point me out to the right direction.
It is not homework problem so don't misunderstand.
I have a matrix 5x5 ...
16
votes
5answers
10k views
Android: How to rotate a bitmap on a center point
I've been looking for over a day for a sollution to this problem but nothing helps, even the answers here dont help me :/ And googles documentation on this doesnt explain anything..
I am simply ...
16
votes
4answers
1k views
Matrix “Zigzag” Reordering
I have an NxM matrix in MATLAB that I would like to reorder in similar fashion to the way JPEG reorders its subblock pixels:
(image from Wikipedia)
I would like the algorithm to be generic such ...
16
votes
9answers
8k views
Python Numpy Very Large Matrices
Numpy is an extremely useful library, and from using it I've found that it's capable of handling matrices which are quite large (10000x10000) easily, but begins to struggle with anything much larger ...
16
votes
11answers
6k views
Is there a library for Linear algebra matrix handling in Java?
Is there any libraries in java that allow using mathematical matrices?
I am looking for a library that allows me to perform operations in matrices such as invert, scalar multiplication, linear ...
15
votes
4answers
136 views
Why are quaternions used for rotations?
I'm a physicist, and have been learning some programming, and have come across a lot of people using quaternions for rotations instead of writing things in matrix/vector form.
In physics, there are ...
15
votes
4answers
656 views
Which row has the most 1s in a 0-1 matrix with all 1s “on the left”?
Problem
Each row of an n x n matrix consists of 1's and 0's such that in any row, all 1's come before any 0's. Find row containing most no of 1's in O(n).
Example
1 1 1 1 1 0 <- Contains ...
15
votes
8answers
809 views
Looking for an elegant and efficient C++ matrix library
Greetings,
googling for that subject brings, e.g., MTL, exmat, LAPACK and also here. I also seem to remember that Microsoft Research released one, but can't put my hands on it.
I look for advice from ...
15
votes
1answer
1k views
Haskell linear algebra?
I am starting to test Haskell for linear algebra. Does anyone have any recommendations for the best package for this purpose? Any other good resources for doing basic matrix manipulation with ...
15
votes
5answers
18k views
Python Inverse of a Matrix
How do I get the inverse of a matrix in python? I've implemented it myself, but it's pure python, and I suspect there are faster modules out there to do it.
14
votes
3answers
179 views
Why is running “unique” faster on a data frame than a matrix in R?
I've begun to believe that data frames hold no advantages over matrices, except for notational convenience. However, I noticed this oddity when running unique on matrices and data frames: it seems to ...
13
votes
3answers
162 views
Difference between [] and [1x0] in MATLAB
I have a loop in MATLAB that fills a cell array in my workspace (2011b, Windows 7, 64 bit) with the following entries:
my_array =
[1x219 uint16]
[ 138]
[1x0 uint16]
[1x2 ...
13
votes
5answers
4k views
Dynamic programming - Largest square block
I need to find the largest square of 1's in a giant file full of 1's and 0's. I know i have to use dynamic programming. I am storing it in a 2D array. Any help with the algorithm to find the largest ...
12
votes
10answers
547 views
Is there a data structure with these characteristics?
I'm looking for a data structure that would allow me to store an M-by-N 2D matrix of values contiguously in memory, such that the distance in memory between any two points approximates the Euclidean ...
12
votes
5answers
2k views
What techniques exists in R to visualize a “distance matrix”?
I wish to present a distance matrix in an article I am writing, and I am looking for good visualization for it.
So far I came across balloon plots (I used it here, but I don't think it will work in ...
12
votes
3answers
5k views
Recommendation for C# Matrix Library
I need a C# library to deal with matrices. It should implement singular value decomposition, matrix inversion, etc
I've used CSML before, but this does not implement some of the features i need.
...
12
votes
9answers
14k views
How can I implement a RESTful webservice using C++?
I have to develop a computing intensive Web Service (say we are making really big Matrix computations) so I've thought that the way to go is coding it in C++. I can't do a wrapper using SWIG or JNI in ...
11
votes
5answers
515 views
Randomize matrix in perl, keeping row and column totals the same
I have a matrix that I want to randomize a couple of thousand times, while keeping the row and column totals the same:
1 2 3
A 0 0 1
B 1 1 0
C 1 0 0
An example of a valid ...
11
votes
8answers
1k views
Is there any method for multiplying matrices having O(n) complexity?
I want to multiply two matrices but the triple loop has O(n3) complexity. Is there any algorithm in dynamic programming to multiply two matrices with O(n) complexity?
ok fine we can't get best than ...
11
votes
6answers
4k views
How expensive is it to compute the eigenvalues of a matrix?
How expensive is it to compute the eigenvalues of a matrix?
What is the complexity of the best algorithms?
How long might it take in practice if I have a 1000x1000 matrix? I assume it helps if the ...
10
votes
2answers
324 views
Plot weighted frequency matrix
This question is related to two different questions I have asked previously:
1) Reproduce frequency matrix plot
2) Add 95% confidence limits to cumulative plot
I wish to reproduce this plot in R:
...
10
votes
6answers
494 views
How to convert a matrix to a list in R?
Say you want to convert a matrix to a list, where each element of the list contains one column. list() or as.list() obviously won't work, and until now I use a hack using the behaviour of tapply :
x ...
10
votes
3answers
194 views
Algorithm to count occurrences of a matrix inside a larger one
i'm facing a problem right now, i need to count the number of time a certain MxM matrix appears inside a NxN one (this one should be larger than the first one). Any hints on how to do this? I'm going ...
10
votes
3answers
1k views
Using WebGL Shader Language (GLSL) for arbitrary vector mathematics in JavaScript
The WebGL Shader Language (GLSL) is a very powerful tool for multidimensional vector mathematics.
Is there any possibility to use that power from JavaScript (running in web browser) for private ...
10
votes
3answers
347 views
Is there a good PHP library for vectors and matrices?
I need a PHP library for vectors and matrices. The library I'm looking for should include functions like matrix multiplication, vector cosine similarity, convolution etc.
I also expect such a library ...
10
votes
3answers
3k views
What is a good free (open source) BLAS/LAPACK library for .net (C#)?
I have a project written in C# where I need to do various linear algebraic operations on matrices (like LU-factorization).
Since the program is mainly a prototype created to confirm a theory, a C# ...
10
votes
4answers
986 views
How to prepend a column to a matrix?
Ok, imagine I have this Matrix: {{1,2},{2,3}}, and I'd rather have {{4,1,2},{5,2,3}}. That is, I prepended a column to the matrix. Is there an easy way to do it?
My best proposal is this:
...
9
votes
3answers
211 views
Type-safe matrix multiplication
After the longwinded discussion at Write this Scala Matrix multiplication in Haskell, I was left wondering...what would a type-safe matrix multiplication look like? So here's your challenge: either ...
9
votes
2answers
159 views
What is the most efficient way to construct large block matrices in Mathematica?
Inspired by Mike Bantegui's question on constructing a matrix defined as a recurrence relation, I wonder if there is any general guidance that could be given on setting up large block matrices in the ...
9
votes
3answers
652 views
How to find same-value rectangular areas of a given size in a matrix most efficiently?
My problem is very simple but I haven't found an efficient implementation yet.
Suppose there is a matrix A like this:
0 0 0 0 0 0 0
4 4 2 2 2 0 0
4 4 2 2 2 0 0
0 0 2 2 2 1 1
0 0 0 0 0 1 1
Now I ...
9
votes
3answers
440 views
Deep copy of a record with R1:=R2, or Is there good way to implement NxM matrix with record?
I'm implementing a N x M matrix (class) with a record and an internal dynamic array like below.
TMat = record
public
// contents
_Elem: array of array of Double;
//
procedure ...
9
votes
5answers
373 views
transforming a matrix into a vector along its diagonals
im not not a programmer, i just need to solve something numerically in matlab.
i need a function to make the following transformation for any square matrix:
from
row 1: 1 2 3
row 2: 4 5 6
row 3: 7 ...
9
votes
9answers
5k views
Is MATLAB faster than Python?
I want to compute magnetic fields of some conductors using the Biot–Savart law and I want to use a 1000x1000x1000 matrix. Before I use MATLAB, but now I want to use Python. Is Python slower than ...
9
votes
7answers
3k views
Matrix from Python to MATLAB
I'm working with Python and MATLAB right now and I have a 2D array in Python that I need to write to a file and then be able to read it into MATLAB as a matrix. Any ideas on how to do this?
Thanks!
9
votes
8answers
501 views
Creating lists of lists in a pythonic way
I'm using a list of lists to store a matrix in python. I tried to initialise a 2x3 Zero matrix as follows.
mat=[[0]*2]*3
However, when I change the value of one of the items in the matrix, it ...
9
votes
2answers
663 views
Matrices of Matrices within Perl
In a Perl script I'm working on, I need to build a matrix out of several other matrices. I've looked at a couple of modules in CPAN (Math::Matrix, PDL::Matrix, Math::Cephes::Matrix), but none of these ...
9
votes
4answers
8k views
3d to 2d Projection Matrix
I have 3 points in 3d space. I know the exact locations of them. Suppose they are (x0,y0,z0) (x1,y1,z1) (x2,y2,z2)
Also i have a camera that are looking at these 3 points and i know the 2d locations ...