2
votes
2answers
26 views
Strategies for debugging numerical stability issues?
Dear SO,
I'm trying to write an implementation of Wilson's spectral density factorization algorithm [1] for Python. The algorithm iteratively factorizes a [QxQ] matrix function in …
0
votes
3answers
25 views
How do I merge two masks together in MATLAB?
I have two masks that I would like to merge together, overwriting mask1 with mask2 unless mask2 has a zero. The masks are not binary, they are some value that is user defined in th …
3
votes
2answers
61 views
How do I divide matrix elements by column sums in MATLAB?
Is there an easy way to divide each matrix element by the column sum? For example:
input:
1 4
4 10
output:
1/5 4/14
4/5 10/14
6
votes
4answers
116 views
Sorting a binary 2D matrix?
I'm looking for some pointers here as I don't quite know where to start researching this one.
I have a 2D matrix with 0 or 1 in each cell, such as:
1 2 3 4
A 0 1 1 0
B 1 1 1 0
…
0
votes
1answer
21 views
Matrix to Represent a Triangle in Screen Space
Hi All,
So i have a set of four points in 3D Space.
P1 [0, 0, 0]
P2 [128, 0, 0]
P3 [0, 128, 0]
P4 [128, 128, 0]
Which I'm then projecting orthographically to the screen …
1
vote
2answers
48 views
Solving for optimal alignment of 3d polygonal mesh
I'm trying to implement a geometry templating engine. One of the parts is taking a prototypical polygonal mesh and aligning an instantiation with some points in the larger object. …
2
votes
1answer
92 views
Best way to allocate matrix in R, NULL vs NA?
I am writing R code to create a square matrix. So my approach is:
Allocate a matrix of the correct size
Loop through each element of my matrix and fill it with an appropriate val …
0
votes
0answers
16 views
Creating and Editing a matrix in ASP.Net & SQL ?
Hey,
What's the best way to create an asp.net page with a data matrix. Imagine an excel sheet where the rows have a dynamic amount of cells, but the number of cells must be the sa …
0
votes
0answers
12 views
Input and output of 2-D matrices in common languages
I need to be able to input and output 2-D matrices (normally numeric) in a form independent of the programming language used to process them. I have adopted the approach below and …
1
vote
4answers
98 views
I am having a problem with pointers in java. How do I fix a java.lang.NullPointerException ?
This is a method that gets a element from a Sparse Matrix in java. I keep getting a java.lang.NullPointerException error. I have looked over the code and can't find the error.
pu …
0
votes
5answers
115 views
matrix and vector template classes in c++
#include <array>
template <typename T>
class Vector4<T> {
std::array<T, 4> _a; // or 'T _a[4];'?
};
template <typename T>
class Matrix4<T> …
-2
votes
2answers
73 views
Difference between MATLAB’s matrix notations
How do you read the following MATLAB codes?
#1
K>> [p,d]=eig(A) // Not sure about the syntax.
p =
0.5257 -0.8507
-0.8507 -0.5257
d = …
0
votes
1answer
37 views
XNA Matrix Camera Scale Issue in 2D Game
Hi, I followed the tutorial on
http://www.david-amador.com/2009/10/xna-camera-2d-with-zoom-and-rotation/ to achieve a camera that follows my player sprite with zoom in/out functio …
2
votes
9answers
142 views
Java large datastructure for storing a matrix
Hi folks,
I need to store a 2d matrix containing zip codes and the distance in km between each one of them. My client has an application that calculates the distances which are th …
0
votes
0answers
37 views
Linear Independence Matrix
Suppose we have a m by n matrix A with rank m and a set K⊆{1..n} such that the columns of A indexed by K are linearly independent. Now we want to extend K and find a set L so that …
