Tagged Questions
The triangular tag has no wiki summary.
10
votes
2answers
378 views
Algorithm for labeling edges of a triangular mesh
Introduction
As part of a larger program (related to rendering of volumetric graphics), I have a small but tricky subproblem where an arbitrary (but finite) triangular 2D mesh needs to be labeled in ...
4
votes
3answers
3k views
How can I create a triangular matrix based on a vector, in MATLAB?
Let's say I've got a vector like this one:
A = [101:105]
Which is really:
[ 101, 102, 103, 104, 105 ]
And I'd like to use only vector/matrix functions and operators to produces the matrix:
101 ...
3
votes
5answers
3k views
Is there around a straightforward way to invert a triangular (upper or lower) matrix?
I'm trying to implement some basic linear algebra operations and one of these operations is the inversion of a triangular (upper and/or lower) matrix. Is there an easy and stable algorithm to do that?
...
1
vote
1answer
190 views
Prolog, triangular numbers, accumulators and tail recursion
I'm working on a homework assignment, consisting of 2 parts.
The first is to write a Prolog program that checks if a certain pair X, Y belongs to a http://en.wikipedia.org/wiki/Triangular_number. For ...
1
vote
2answers
281 views
How to speed up memory allocation for 2D triangular matrix in c++?
I need to allocate memory for a very large array which represents triangular matrix.
I wrote the following code:
const int max_number_of_particles=20000;
float **dis_vec;
dis_vec = new float ...
0
votes
0answers
33 views
How to create a best-fit triangular matrix
I have a nxn matrix where the row/column identifiers are the same. The plot is a count of things one row requires from another column.
A B C D
A 0 0 0 0
B 0 1 2 0
C 7 2 0 0
D 0 0 0 0
I want to ...
0
votes
0answers
314 views
find triangular triplet in an array [closed]
Possible Duplicate:
finding triangulars from array
I found this interview question at this forum: http://geeksforgeeks.org/forum/topic/check-for-triangular-triplet
I'm copying the ...