Skip to main content

Questions tagged [matrix]

The tag has no usage guidance.

1 vote
3 answers
546 views

Memory on multiple cores versus 1 core

I am running a program that, among other things, does some matrix multiplications, singular value decompositions and accessing matrix subsets on a very large data set (these are the lines of code that ...
Andy's user avatar
  • 19
7 votes
1 answer
613 views

Smallest Rubik's cube state representation

I'm trying to determine what is the fewest number of bits I need to represent the state of a Rubik's cube. (EDIT: I am assuming the cube is a valid Rubik's cube that has not been altered and only ...
J Price's user avatar
  • 89
4 votes
3 answers
2k views

What is the most effective algorithm to evenly distribute n points on a 2 dimensional array so they are as separated as possible?

I am trying to code a game which currently uses a matrix ( that I am calling a map). On this map are islands which can be generated n times. The purpose of the algorithm is to distribute the islands ...
Ewan Ross's user avatar
1 vote
1 answer
151 views

What is the most efficient way to represent resizable adjacecny matrix

I'm building a simple app that represents some matrix, where nodes are added quite often. Currently I have following code for adding a new node: let mut new_edges = Array2::default((position + 1, ...
Alex Zhukovskiy's user avatar
4 votes
5 answers
776 views

How to measure the solution level of an unsolved Rubik's Cube?

I am trying to figure out how to measure the relative success level of a given (but unsolved!) Rubik's Cube state. My first idea was to calculate the number of overlapping "cells" in the destination (...
Hendrik's user avatar
  • 149
0 votes
0 answers
126 views

Quick way to check if there is a path in digraph

I have a finite directed graph (of several weakly connected components). Having two elements I need to check if there is a path from the first one to the second one. The easiest solution is to ...
porton's user avatar
  • 761
2 votes
3 answers
319 views

What Behavior would most users expect from a "Row Iterator" and a "Column Iterator"?

Let's say I have a Matrix class I've already implemented. Matrix<float> mat(30, 30); for(size_t row = 0; row < mat.rows(); row++) {//Assume Row-Major ordering for performance reasons for(...
Xirema's user avatar
  • 513
1 vote
1 answer
2k views

Implementation of Matrix<T>: std::vector<T> vs std::unique_ptr<T[]>?

As part of a hobby project, I needed a rectangular Matrix object to maintain state of a grid. At first, the implementation seemed trivial and unworthy of further discussion: (I haven't included all ...
Xirema's user avatar
  • 513
-1 votes
1 answer
131 views

Aligning text columns of different size and content

In a past posting, I asked about commands in Bash to align text columns against one another by row. It has become clear to me that the desired task (i.e., aligning text columns of different size and ...
Michael Gruenstaeudl's user avatar
3 votes
3 answers
116 views

Say we have a group of N person, and each person might want to sell or buy one of the M items, how to find a closed path among them for an exchange?

Say we have N persons and M items (when a person has a certain item, she usually only has one piece). For example, person 1 has item A, C, D, and wants item F person 2 has item B, C, and wants E ...
Jay's user avatar
  • 141
-1 votes
1 answer
195 views

Rotate a matrix in place, moving elements? (How to write a part of flow/logic after understanding the problem?)

Following is a java solution of the classic question of rotating a nxn matrix in place clockwise by 90 degrees. public void rotate(int[][] matrix, int n) { for (int layer = 0; layer < n / 2; ++...
Stacky's user avatar
  • 113
0 votes
1 answer
527 views

Algorithm to find the highest Tetromino in a Tetris board?

Lets say that our Tetris board is represented as a 2D array of zeros and ones, where a 0 means empty and 1 means occupied, and you where asked to find the highest row in which a tetromino exists. ...
Raed Tabani's user avatar
1 vote
2 answers
253 views

Place X items in N matrices without repeat column and row

I have N matrices (n × m) and items to place in each one (n · m). The same items are repeated randomly for each matrix. When one item is placed in (i, j), for the following matrices the ...
user1532587's user avatar
9 votes
5 answers
16k views

Which algorithm is performant for matrix multiplication of 4x4 matrices of affine transformations

I am wondering what is a good, performant algorithm for matrix multiplication of 4x4 matrices. I am implementing some affine transformations and I am aware that there are several algorithms for ...
wirrbel's user avatar
  • 3,038
22 votes
2 answers
6k views

How did Strassen come up with his matrix multiplication method?

The famous Strassen's matrix multiplication algorithm is a real treat for us, as it reduces the time complexity from the traditional O(n3) to O(n2.8). But of all the resources I have gone through, ...
user1369975's user avatar
  • 1,299