Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
584 views

matlab precision determinant problem

I have the following program format compact; format short g; clear; clc; L = 140; J = 77; Jm = 10540; G = 0.8*10^8; d = L/3; for i=1:500000 omegan=1.+0.0001*i; a(1,1) = ...
5
votes
3answers
133 views

det of a matrix returns 0 in matlab

I have been give a very large matrix (I cannot change the values of the matrix) and I need to calculate the inverse of a (covariance) matrix. Sometimes I get the error saying Matrix is close to ...
5
votes
4answers
368 views

Determinants of huge matrices in MATLAB

from a simulation problem, I want to calculate complex square matrices on the order of 1000x1000 in MATLAB. Since the values refer to those of Bessel functions, the matrices are not at all sparse. ...
3
votes
3answers
1k views

How to calculate matrix determinant? n*n or just 5*5

everyone. I need to find matrix n*n (or 5*5) determinant. I have a function translated from Pascal, but there's INDEX OUT OF RANGE EXCEPTION. Could somebody help me? Here's my code: public static ...
3
votes
7answers
7k views

Java inverse matrix calculation

I'm trying to calculate the inverse matrix in Java. I'm following the adjoint method (first calculation of the adjoint matrix, then transpose this matrix and finally, multiply it for the inverse of ...
2
votes
1answer
24 views

Applying symbolic determinant in Matlab to an abstract class

I have implemented a class in Matlab, which overloads the '+', '-' and '*' operator. Now I am interested in calculating the determinant of a Matrix whose entries consist of instances of this class. Is ...
2
votes
1answer
140 views

How to define determinant of a matrix as a function in mathematica?

Let A(t)=(f1(t), f2(t); f3(t), f4(t)) be a 2*2 matrix first of all how can I define the matrix A(t) as a function of t then I would like to define the determinant of A as a function, i.e. ...
2
votes
1answer
2k views

Boost Library, how to get determinant from lu_factorize()?

I am trying to calculate a determinant using the boost c++ libraries. I found the code for the function InvertMatrix() which I have copied below. Every time I calculate this inverse, I want the ...
1
vote
1answer
138 views

Calculating the Determinant in C++

I was trying to calculate the determinant of a 3 * 3 matrix (or more) with the matrix values ranging from (-1, to 1). However, I get a result of 0 when I calculate the determinant. [...] ...
1
vote
4answers
2k views

Calculating an NxN matrix determinant in C#

How do you calculate the determinant of an NxN matrix C# ?
1
vote
3answers
2k views

How do I solve a determinant in MATLAB?

As a simple example, let's say you have this matrix: M = [omega 1; 2 omega]; and you need to solve for the values of omega that satisfy the condition det M = 0. How do you do this in ...
0
votes
2answers
220 views

Algorithm to find the determinant of a matrix

I have to write an algorithm to find the determinant of a matrix, which is done with the recursive function: where A_ij is the matrix, which appears when you remove the ith row and the jth column ...
0
votes
0answers
56 views

Matrix cofactor calculation

I was trying to solve an inverse matrix for a 4 X 4 matrix (later turn into an n X n). So I tried find the cofactors of the matrix. My algorithm is as follows: suppose a matrix : 1 2 3 4 ...
0
votes
1answer
197 views

Calculate matrix determinant with partial pivoting Gauss in C

I'm trying to make a simple console application in C which will calculate the determinant of a Matrix using the Gauss partial pivoting elimination method. The 2 problems that I have are : - someone ...
0
votes
1answer
572 views

Code to solve determinant using Python without using scipy.linalg.det

Description(this is a hwk question): I am not sure where to start here. I plan to use Laplace's Expansion but I am not sure how to implement it for nxn matrices. Any help would be appreciated. ...
0
votes
2answers
192 views

Confirm I understand matrix determinants

Basically I have been trying to forge an understanding of matrix maths over the last few weeks and after reading (and re-reading) many maths heavy articles and documentation I think I have an adequate ...