Skip to main content

Questions tagged [matrix]

Filter by
Sorted by
Tagged with
1 vote
3 answers
826 views

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
4 votes
3 answers
3k views

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
5 votes
5 answers
872 views

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
  • 159
2 votes
3 answers
347 views

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
  • 533
-1 votes
1 answer
146 views

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
-1 votes
1 answer
206 views

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
1 vote
2 answers
263 views

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
24 votes
3 answers
6k views

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,319