Tagged Questions
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
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
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 ...