Tagged Questions
0
votes
2answers
51 views
How do I turn a 2x3 matrix into a 3x3 matrix
I'm sorry if this is a stupid question but I just can't find the answer I need.
I have the following matrix:-
A |6 6 0|
|9 0 0|
Each column represents co-ordinates on a grid.
Now to find the ...
1
vote
1answer
66 views
Generating Positive definite matrix of dimensions 8x8
I am trying to generate a positive definite matrix (A'*A) of dimensions 8x8.
where A is 1x8.
I tried it for many randomly generated matrix A but not able to generate it.
octave-3.6.1.exe:166> A= ...
0
votes
1answer
66 views
Image warping in .NET
I was searching for a stretch like warp algorithm to apply in my Windows 8 store application.
I found this android (java) code below.
Most things I can port to C# but some android sdk specific things ...
0
votes
0answers
37 views
Invert a Covariance Matrix in VBA in order to solve a Matrix equation
I would like to solve an equation where I need to invert a Covariance matrix with VBA. The process of the study is as follow :
I need to calculate the vector X
X = M(inverted) * 1 / (1(transposed) ...
0
votes
0answers
43 views
Rotating entire X,Y axis in 2D space via matplotlib
I have problem using matplotlib in Python. Problem is that I must make rotation in 2D of X and Y axis by 30°,45°,60° and 120° and the opposite. In this code below can someone please give me some tips ...
0
votes
1answer
66 views
Inverting a 4x4 Matrix algorithm
I'm trying to invert 4x4 matrices, I've seen some examples of calculating the determinant with a few dozens of calculations, this did not seem to work for me, I might've just messed up somewhere, but ...
0
votes
3answers
41 views
Javascript matrix addition of an arbitrary number of arrays' values, without using array.map()
I'm trying to build a helper function for my AngularJS app (but the solution doesn't have to use angular.forEach). The function should take an arbitrary number of arrays with same length and add the ...
0
votes
4answers
59 views
Input an integer, find the two closest integers which, when multiplied, equal the input
Ok my problem is of mathematical nature.
I have an array of bytes whose length is X, i need to find the two closest numbers which multiplied together equal X.
I need to do this because i am bulding a ...
0
votes
1answer
79 views
Forward substitution of lower triangular matrix. How?
Not sure if this is the right place to ask but here goes.
Does anyone know how the following code is able to solve for x Lx=y where L and y are a given matrix and a vector, respectively?
If you ...
0
votes
0answers
42 views
Retrieve X/Y angles (in 360 degrees) from a 3D Matrix? [duplicate]
I have a 3D Matrix that looks like this:
matrix3d(-0.9612616959383189, 0, 0.275637355816999, 0, 0, 1, 0, 0, -0.275637355816999, 0, -0.9612616959383189, 0, 0, 0, 0, 1)
It represents an object ...
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
39 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
44 views
Concatenate nested array to vector?
Given I have an array like this:
array = [Array[8], Array[8], Array[8], ...]
# array.length is 81; each octet represents a point on a 9x9 grid
where each nested array contains 8 numeric elements ...
1
vote
3answers
99 views
Projection- Transforming 3d to 2d
I have problem or well, I do not know how to transform 3d point with x,y,z values to 2d point,
I have to draw projection, where I do have x,y,z values for points but I don't know how to transform them ...
-1
votes
4answers
368 views
Rotating matrices
Objectives
Imagine that, we have matrix like
a11 a12 a13
a21 a22 a23
a31 a32 a33
What I want to do is, from textbox value rotate this matrix so that, for example if I write 2 and press rotate, ...
4
votes
1answer
115 views
MATLAB, how to compute the distances between large coordinate sets, without exceeding memory constraints?
(using MATLAB) I have a large coordinate matrix and a large sparse adjacency matrix for which coordinates are connected to each other. I had asked previously on SO, how to efficiently compute these ...
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 ...
1
vote
1answer
44 views
Symetrical positions in matrix
Given an (i,j) element in a matrix what is the symmetrical correspondent in the matrix. I am trying to create a function that generates a symmetrical matrix in c. Thanks a lot.
Also would it be wise ...
0
votes
0answers
21 views
New Matrix when Grouping Shapes in Drawing program
I am developing a small drawing program that uses matrices to hold the angle, scale and translation of each shape. When it is time to draw I calculate the points by multiplying the 'world' matrix by ...
2
votes
1answer
115 views
using matrices algebra to manipulate strings: is it feasible?
I'm trying to use matrix algebra with the purpose of manipulating strings. This means being able to multiple matrix-like structures using concatenation and pasting of string or of arrays of strings.
...
3
votes
2answers
184 views
Creating a rotation matrix based on two vectors
I am looking to create a rotation matrix (M) when I pass in a vector (V) where M * [0, 0, 1] (forward) = V.
I am doing this because I then want to use this matrix to multiply other vectors to put ...
0
votes
1answer
38 views
Deleting identical rows in matrix [closed]
Can someone help me out with this problem? What is the fastest way to delete identical rows in matrix. E.g. if there are 3 identical rows, 2 will be deleted.
e.g.
0 1 0
0 1 0
0 1 0
...
1
vote
2answers
95 views
SVG Matrix to Rotation Degrees
I'm reading a rectangle's position and rotation from an SVG file which has a matrix in the following format:
<rect transform="matrix(1.02414 -0.133308 0.122628 0.942091 190.767 780.999)" ...
1
vote
3answers
748 views
MySQL matrix multiplication
I am trying to write matrix multiplication for MySQL and am kinda stuck:
basically, my matrices are stored in format
[row#, column#, matrixID, value], so for example matrix [3 x 2] would be ...
3
votes
1answer
158 views
In a TBN Matrix are the normal, tangent, and bitangent vectors always perpendicular?
This is related to a problem described in another question (images there):
Opengl shader problems - weird light reflection artifacts
I have a .obj importer that creates a data structure and ...
-1
votes
2answers
101 views
Binary Matrix Multiplication in Java
I want to do binary matrix multiplication in Java. Is there any class or jar available for doing this?
0
votes
1answer
44 views
How to “undo” rotation to get proper scaling?
I'm trying to calculate the zoom percentage from a projection matrix. The following code works as long as the image isn't rotated:
void UpdateZoomPercent()
{
var zoom = _projMatrix.M11 * ...
3
votes
3answers
180 views
Translating Camera Matrix in OpenGL
So until recently I have been transforming my OpenGL objects like this (Rotation_Matrix is GLfloat[16], I get it from a quaternion that stores the object's orientation, works well):
...
5
votes
2answers
189 views
How to rotate a matrix in an array in javascript
(disclosure, I'm mostly math illiterate).
I have an array in this format:
var grid = [
[0,0], [0,1], [0,2], [0,3],
[1,0], [1,1], [1,2], [1,3],
[2,0], [2,1], [2,2], [2,3],
[3,0], [3,1], ...
0
votes
1answer
126 views
OpenGL - Object local rotation
I am trying to make something like - lets call it flight simulator using modern OpenGL. I am trying to use yaw, pitch and roll to rotate my plane object. But it seems object rotates around global ...
5
votes
2answers
270 views
How do I get a matrix where I translate then rotate then translate then rotate a second time?
In an Android app I want to draw a running leg. To output the top part of the leg I do something like:
// legCX,legCY is the location on screen about which the leg rotates.
Matrix m = new Matrix();
...
-3
votes
1answer
48 views
In any binary matrix is there any efficient way to confirm one 0 in one row and rest of item is 1 in matlab?
for example
A=[0 0 0;
1 1 1;
1 0 0;
1 1 0;
0 0 1];
After applying function
A=[1 1 0;
1 1 0;
1 1 0;
1 0 1];
One row one zero and rest of them are one. if all are one put ...
1
vote
0answers
79 views
Projecting from screen to world space in C has strange FOV results
firstly thank you for looking at my post, I will try to be as detailed as I can to explain my problem.
I am trying to build a simple ray tracer and I am getting some strange results when I try to ...
-5
votes
1answer
77 views
How to get matrix diagonal length? [closed]
Is there a formula that would get me the length of a matrix's diagonal in units? For example if the matrix is 3x3, the diagonal length would be 3.
-3
votes
1answer
80 views
I have trouble with Matrices in Objective-C
This code works for multiply 2 matrix which it send matrix a and matrix b and them pointer to matrixMultiply method.
But I have trouble at the line "matrix12[i][j] += matrix1[i][k] * matrix2[k];"
...
2
votes
1answer
253 views
JS Matrix Multiplication Issue
I'm having trouble with matrix multiplication code in JavaScript. If I run the function below with the following two matrices:
var m1 = [ [ 1, 0, 0 ],
[ 0, 1, 0 ],
[ 1, 1, 0 ],
[ 0, 0, 1 ],
[ ...
0
votes
1answer
53 views
Given a large 2D matrix, how many 2D matrix of smaller size n can I uniquely fit? [closed]
I have a large 2D Matrix that represents a 3D Games' 2D terrain - Walls and Floors of various types (dirt, rock, etc).
Lets for example say there is an area of 4x9 of rock floor. I have a requirement ...
0
votes
0answers
52 views
Iterative refinement with new data
I have a timeseries with enough data points that it's difficult to store it all in memory at once, but would like to solve a linear system of equations using all of it, so I'm looking for a way to ...
3
votes
3answers
82 views
Selecting a set of elements from a simple one-dimensional array, with the target element in the middle
With a lack of math neurons in my brain, i struggle a bit in finding my way around this.
I need to create a simple javascript function that will receive three parameters:
A one-dimensional, normal ...
1
vote
1answer
96 views
iOS convert a region defined in polar coordinates to an NxN matrix
Ok, so the situation is that I want to create an NxN matrix representing the pixels of a bitmap image.
Then, I want to change the value of all those pixels which fall in a certain region to a ...
2
votes
0answers
107 views
Stereo calibration real world coordinate mathematics
I have implemented the Stereo 3D example provided in book Learning OpenCV. Now I want to calculate the real world coordinates for the pixel that I have clicked on the left image. In this post I have ...
0
votes
1answer
116 views
How to orthogonalize a non-orthogonal matrix using HLSL?
I'm just wondering whether this can be done in ps shader.I have an non-orthogonal matrix and need to orthogonalize it and using inverse-transpose result.I turned to matlab for help,only found their ...
0
votes
1answer
56 views
Entity look at for cameras and objects
I'm currently extending my 3D-engine for a better entity system which includes cameras. This allows me to put cameras into parent entities which may also be in another entity ( and so on... ).
...
1
vote
2answers
192 views
How would I go about finding all possible permutations of a 4x4 matrix with static corner elements?
So far I have been using python to generate permutations of matrices for finding magic squares. So what I have been doing so far (for 3x3 matrices) is that I find all the possible permutations of the ...
0
votes
2answers
170 views
DirectX - Matrix to Quaternion
I'm trying to use directX's D3DXQuaternionRotationMatrix() function to retrieve the rotation quaternion from a matrix. The matrix was generated by Blender (an open-source 3D graphics environment ) and ...
1
vote
1answer
78 views
Object orientation from normal
In my project I give an orientation to an object by applying the normal to the model matrix. My model matrix is the product of the scaling, rotation and translation matrices.
p22.Normal.Normalize();
...
-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 ...
1
vote
2answers
246 views
a good math vector/matrix class/structure to download for C++? [duplicate]
Possible Duplicate:
What are the most widely used C++ vector/matrix math/linear algebra libraries, and their cost and benefit tradeoffs?
just need a publicly downloadable vector/matrix ...
-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.
...
0
votes
1answer
81 views
GLSL 330 Matrix-Computation Error {No compile error}
Edit:
Alright got it now :D
Problem: Completly forgot glm uses colum-major matrices. Just had to change GL_TRUE, to GL_FALSE and everything is alright.
I try to compute my ModelMatrix with my ...



