Ask a New Question
Search
write a c programs to find the trace of a given matrix.
1 answer
for an integer matrix,
int trace(int *a,int n) {
int t=0,i;
for (i=0;i<n;i++) {t += *(a[i*n+i])}
return t;
}
Ask a New Question
or
answer this question
.
Similar Questions
write a c programs to find the trace of a given matrix.
0 answers
A computer programmer can write 8 programs in 2 weeks at a constant rate. How many programs a day can the programmer write?(1
1 answer
A computer programmer can write 8 programs in 2 weeks at a constant rate. How many programs a day can the programmer write?(1
11 answers
Given the following matrix A, find an invertible matrix U so that UA is equal to the reduced row-echelon form of A:
You can
1 answer
more similar questions