1
vote
0answers
8 views
Dealing with Generator Matrices
I am currently working on some Java code using the book Error Control Coding: Fundamentals and Applications and can encode well. However, I am using pre-determined values set in th …
0
votes
1answer
40 views
MySQL many to many table to table matrix
Hi,
I have a many to many table in MySQL - it can look something like:
A | B
1 | 1
1 | 2
1 | 3
3 | 4
3 | 5
4 | 1
4 | 2
4 | 5
etc.
You'll notice that the numbers are not always …
0
votes
1answer
7 views
Accessing data in a nested matrix
This one has me stumped, and none of the other related questions here have given me clues. I'm using regexp to parse a string. When I print t afterward, it looks something like t …
1
vote
3answers
122 views
Clojure Matrix Representation
What is a good representation for matrices in Clojure? I'm interested in dealing with dense matrices of floating point numbers. The "list of lists" representation springs to mind, …
0
votes
3answers
72 views
What does “unary minus” mean for Matrices
When we're talking about matrices or a matrix, what does "unary minus" stand for as an arithmetic operator?
3
votes
9answers
536 views
Three dimensional matrices: practical usage
Other than graphics applications, what are some of the practical applications of 3d matrices?
0
votes
3answers
90 views
C++ matrix transposion. Boost uBLAS and double*?
Hello!
I need to do a in-place transposition of a large matrix(so the simplest way to allocate another matrix and transpose to it won't work). Unfortunately, this large matrix isn …
0
votes
1answer
63 views
Windows Magnification API, .NET and matrices.
I'm trying to create a magnifier app in .net using the Windows Magnification API. I've pretty much got everything working except for actually setting the magnification level (whic …
1
vote
4answers
466 views
Direct3D & iPhone Accelerometer Matrix
Hi All,
I am using a WinSock connection to get the accelerometer info off and iPhone and into a Direct3D application. I have modified Apples GLGravity's sample code to get my heli …
3
votes
2answers
272 views
Which method of matrix determinant calculation is this?
This is the approach John Carmack uses to calculate the determinant of a 4x4 matrix. From my investigations i have determined that it starts out like the laplace expansion theorem …
3
votes
3answers
172 views
Sparse Multi-Dimensional Data Representation
I'm working on a cardiac simulation tool that uses 4-dimensional data, i.e. several (3-30) variables at locations in 3D space.
I'm now adding some tissue geometry which will leave …
13
votes
17answers
3k 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 …
1
vote
5answers
606 views
What is the easiest way to align the Z axis with a vector?
Given a point such as (0, 0, 0) and a vector like (x, y, z). What is the easiest way to align the negative Z-axis centered at (0, 0, 0) to point in the direction of this vector? Ex …
0
votes
3answers
177 views
C - Sending the contents of a matrix in one function to a matrix in another function
Good evening.
How can I pass the contents of a char matrix in one function to another matrix of equal dimensions in another function?
Many thanks in advance.
2
votes
5answers
575 views
Comparing two matrices in Matlab
I have two matrices x and y, both are results from different algorithms/routines that are supposed to calculate the same result. While I know that the isequal() would check if x an …
