Tagged Questions

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