1
vote
1answer
91 views

How to generate a random n*y matrix with columns of unit length?

Is there any specific form or algorithm of generating a random matrix in which all it's columns norm is equal to one? I'll do an implementation of the algorithm in c/obj-c. However just the general ...
-3
votes
1answer
63 views

Random integer in MATLAB

I need to generate an input signal with a random digital message consisting of 40320 integers from 0 to 15 using the rectangular 16QAM modulation scheme for a minimum of 101 number of errors in order ...
2
votes
3answers
103 views

Probability of death of a man moving n steps in a matrix

There is an island which is represented by square matrix nxn. A person on the island is standing at any given co-ordinates (x,y). He can move in any direction one step right, left, up, down on the ...
2
votes
1answer
67 views

How to find largest figure in 2d array

I have image with example of matrix with marked cells in it which makes a figures. The thing is, that I have to count and find the largest figure in the matrix. As we can see there is 3 figures ...
2
votes
2answers
70 views

How to shift group of elements in a matrix?

I am trying to move selected group of elements in a matrix by some distance horizontally and vertically. I'm using Java, as input I have: 2d array of elements array with coordinates of elements to ...
1
vote
0answers
31 views

Can someone expain me the BiCGSTAB method

I have to implement BiCGSTAB methos in C++ programming interface. I tried understanding it on various blogs and page but couln't get the satisfaction. I also tried reading code provided by some of ...
2
votes
2answers
58 views

Find correlation in large dataset

I have a huge dataset. We are talking about 100 3D matrices with 121x145x121 cells. Any cell has a value between 0 and 1, and I need a way to cluster these cells according to their correlation. The ...
1
vote
1answer
85 views

Block Matrix Transpose

I wanted to implement transposition of a matrix by dividing the input matrix into blocks and then transposing them. I referred to the corresponding post A Cache Efficient Matrix Transpose Program? and ...
2
votes
1answer
49 views

Form a Matrix From a Large Text File Quickly

Hi I am struggling with reading data from a file quickly enough. ( Currently left for 4hrs, then crashed) must be a simpler way. The text file looks similar like this: From To 1 5 3 2 2 1 ...
-1
votes
0answers
72 views

Intersection between more than two 2d array

Suppose that we have three 2d arrays such as: The first one is: 11 23 33 12 21 34 12 23 31 13 24 32 The second one is: 12 21 34 11 23 33 12 24 31 13 24 32 and the third one is: 12 24 ...
2
votes
1answer
127 views

Find the Nth term in a sequence in C++

I have found a problem in which you are given this type of sequence: you have the first K terms : a1, a2, ... , ak; K coefficients : b1, b2, ... , bk and a recurrence: S(i) = ...
0
votes
1answer
40 views

Calculating parallax layer world coordinates?

I'm trying to position a sprite in a 2d game at a certain world position on a parallax layer. So if my parallax layer has a scroll factor of 0.5, when the camera moves 2 pixels, that layer moves 1 ...
1
vote
1answer
72 views

Move square inside large matrix, find minimum number in overlapping

I have a sqaure matrix and a smaller square which moves inside the matrix at all possible positions (does not go out of the matrix). I need to find the smallest number in all such possible ...
1
vote
2answers
57 views

Expanding blocks ( dilation ) in a binary grid

For an A* implementation (to generate a path for a 'car' robot), I need to adapt my model to take into account the car's 'width' and hence avoid obstacles. One idea I got is to expand all obstacles ...
4
votes
1answer
121 views

Product of two Toeplitz matrices?

The O(n log n) algorithm for the product of a Toeplitz matrix and a vector of the correct length is well-known: put it in a circulant matrix, multiply it by the vector (and subsequent zeroes), and ...
0
votes
2answers
40 views

Find area fill of 1 in a bool matrix

i have a bool matrix, i wanna find area(s) that fill of 1(true value). the area represent as polygon(clock wise). can somebody give me an idea.
0
votes
1answer
204 views

Kabsch Algorithm for 2d to 3d Rotation and Translation

My problem involves matching a set of 2d points to a set of 3d points, with known correspondence between the two. Basically I have points on an image, and I need the optimal translation and rotation ...
0
votes
2answers
81 views

Adding square matrices in O(n) time?

Say we have two square matrices of the same size n, named A and B. A and B share the property that each entry in their main diagonal diagonals is the same value (i.e., A[0,0] = A[1,1] = A[2,2] ... = ...
2
votes
4answers
161 views

left shifting an array like a chain

I want to left shift an n*n array (n is an even number ), m times like this Image : I spent one day to find a solution, but I couldn't find a general solution. Do you know an algorithm to ...
0
votes
1answer
115 views

graph-game algorithm

I'm trying to simulate the following game: The game is played with 2 players. Imagine you have a graph, with vertices and edges. Each turn you can remove one edge, if you isolate a vertex you get a ...
3
votes
3answers
100 views

Comparison of all array elements - C algorithm

I have a matrix m * n and, for each row, I need to compare all elements among them. For each couple I find, I'll call a function that is going to perform some calculations. Example: my_array -> ...
0
votes
1answer
76 views

How to find contiguous areas in matrix with less memory?

Suppose I have a matrix of 0 and 1. Now I would like to count all contiguous areas in the matrix that contain only 1. allocate a new matrix "visited" to track visited elements COUNT = 0 for each ...
-1
votes
2answers
77 views

Shuffle matrix in C [closed]

I've contructed a matrix of 26x26x2 that contains every unique combination of two letters in alphabetical order. | 1 | 2 | 3 | ... | 26 ----+-----+-----+-----+-----+---- 1 | a,a | a,b | ...
-1
votes
2answers
132 views

Algorithm for creating random colormap [closed]

I need a algorithm for creating random colormap. I need to pass m and n to it and it should return matrix of size mn with values of range 0-99. I want to draw that matrix using dark colors to great ...
-3
votes
1answer
82 views

Algorithm to find all possible strings in three directions, given an n x n array of chars? [closed]

Lets say we are given an n by n array of chars. How would you go about making an arraylist of all strings that could possibly be found by traversing the 2d array of chars horizontally, vertically, and ...
4
votes
1answer
94 views

Does an algorithm exist to find the minimal sum of non-intersecting values in a 2D array?

I'm looking for a fast algorithm to determine a particular minimal property of a given 2D array - the sum of the smallest values that have no rows or columns in common. I'm sure this must have a name ...
185
votes
31answers
10k views

Bomb dropping algorithm

I have an n x m matrix consisting of non-negative integers. For example: 2 3 4 7 1 1 5 2 6 2 4 3 4 2 1 2 1 2 4 1 3 1 3 4 1 2 1 4 3 2 6 9 1 6 4 "Dropping a bomb" decreases by one the number of the ...
-1
votes
1answer
79 views

Horizontal and vertical flip on linesegment

I have a set (c++ vector) of points (x,y) that defines a line. How do I implement a function that returns the samle line, flipped horizontal and vertical relative to its own size?
3
votes
1answer
278 views

Kth smallest element in sorted matrix

This is an interview question. Find the Kth smallest element in a matrix with sorted rows and columns. Is it correct that the Kth smallest element is one of a[i, j] such as i + j = K ?
0
votes
1answer
82 views

Printing 2d array in counterclockwise order

How do you print an array in counterclockwise order? I know of the famous "print an array in spiral order" algorithm, but it'd be interesting to see how to print it in a counterclockwise fashion
5
votes
3answers
253 views

Building a Matrix of Combinations

I'm sure this has been asked a million times, but when I searched all the examples didn't quite fit, so I thought I should ask it anyway. I have two arrays which will always contain 6 items each. ...
0
votes
1answer
71 views

edge connectivity graph

I need help with a pseudocode for an algorithm that solves the 3-edge connectivity problem: input: a graph G in adjacency matrix format output: true if, for every pair of vertices v,w elements of G, ...
2
votes
2answers
82 views

Searching for matrix way finding algorithm

i am developing a board game in php and now i have problems in writing an algorithm... the game board is a multidimensional array ($board[10][10]) to define rows and columns of the board matrix or ...
0
votes
1answer
68 views

How can I find all contiguous submatrices?

I'm just having a hard time figuring this out. I promise it's not for homework. Given a matrix of arbitrary size like the following (with (0, 0) being in the upper left corner): 1 0 0 1 0 0 0 0 1 1 ...
0
votes
2answers
90 views

sorted matrix search master theorem analysis

So the problem is to find whether x is in one of the elements of a sorted matrix ascending by row and by column. example : 1 2 3 4 5 6 7 8 9 I'm interested to find the time complexity of the ...
2
votes
2answers
265 views

Matrix Exponentiation Algorithm for large values of N

I want to calculate the Fibonacci of very large value of N ie. 10^6 with a complexity of O(logN). Here is my code but it gives the result for 10^6 in 30 seconds which is very time consuming.Help me ...
0
votes
1answer
125 views

adjacency matrix for boggle board

I'd like to generate the adjacency matrix for a boggle board. A boggle board is one where you have alphabets in a nxn matrix like this: http://www.wordtwist.org/sample.gif Each cell is connected to ...
1
vote
1answer
141 views

Finding the recurrence relation and matrix exponentiation

I am trying to find the recurrence relation for this problem on Codechef: http://www.codechef.com/problems/BWALL I know once I find it, I can easily solve it using matrix exponentiation. But I'm ...
4
votes
1answer
223 views

Find row and column number of eight neighbors conditionally in Matlab

I have a 6 * 6 matrix A= 3 8 8 8 8 8 4 6 1 0 7 -1 9 7 0 2 6 -1 7 0 0 5 4 4 4 -1 0 2 8 1 1 ...
1
vote
2answers
80 views

Cluster numbers in big matrix

I need to cluster all numbers (in one cluster can be numbers with same value, for example just 5) in matrix different than passed and return dictionary like {number1:[[(3,4),(4,5)],[]..], ...
4
votes
2answers
113 views

Nullify a 2D matrix with some set of operations

Given an N x M matrix having only positive integer values, we have to nullify the matrix i.e make all entries 0. We are given two operations 1) multiply each element of any one column at a time by 2. ...
0
votes
1answer
86 views

Stop the inversion of Y axis in camera

I have a program in which I have a simple rectangle drawn over the screen. When I put the rectangle inside a camera such as a ofEasyCam, it translates the position of the rectangle to the centre of ...
4
votes
3answers
348 views

How do I fill a 2D array with a constant value, with a better efficiency than n^2?

This is a general question, which could be applicable to any given language like C,C++,Java etc. I figured any way you implement it, you can't get more efficient than using 2 loops, which gives an ...
-1
votes
1answer
115 views

Find all rectangles of sub densed matrix in a large sparse matrix

This is part of image processing algorithm where more optimization is expected. We have a large sparse matrix consisting of 0's and 1's. In this sparse matrix there are one or more dense region of ...
-3
votes
2answers
69 views

How to implement Foulke's algorithm in C [closed]

Foulke's algorithm is defined by (In + U)2 = In+ U + U2 with: In : the identity matrix U : square adjacent matrix I want to implement this algorithm in C by recurrence. Any help is appreciated. ...
1
vote
1answer
75 views

Determine a cycle in a matrix

I have a matrix and each cell has a boolean property. I need to determine a cycle, starting from a cell that has the boolean property false, and this cycle must contain only cells that have that ...
2
votes
4answers
102 views

How to search an area of the same values in a matrix?

I have a matrix of integers like this: 1 1 1 0 3 3 3 0 2 2 1 1 1 0 3 3 3 0 2 2 0 0 0 0 3 3 3 0 0 0 2 2 0 0 3 3 3 0 4 4 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 4 4 4 0 where I have different areas of the ...
1
vote
1answer
230 views

How to use Transformation Matrix for SpriteBatch correctly?

I'm new to XNA and would like to develop a light-weight 2D engine over it, with the entities organized into parent-child hierarchy. I think of matrix when drawing children, because their position, ...
0
votes
1answer
84 views

How can I create a Seq[Array[Double]] for a matrix multiplication?

class MatrixMultiplication { def singleThreadedMultiplication(m1:Seq[Array[Double]], m2:Array[Array[Double]] ) ={ val res = Array.fill(m1.length, m2(0).length)(0.0) for(row <- 0 until ...
3
votes
2answers
162 views

Algorithm for computing transitive closures on DAGs by harnessing machine words?

Let G be DAG with n vertices and m edges given by adjacency matrix. I need to calculate it's closure in form of a matrix as well. We have a computer that each word is b bits. and I need to find an ...

1 2 3 4 5 6