필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Determinant of a second order tensor

조회 수: 1 (최근 30일)
Ahmar Yanis
Ahmar Yanis 2022년 10월 4일
마감: John D'Errico 2022년 11월 3일
A second order tensor S its inverse is S^-1. Using matlab randi function to gen a square (NxN) matrix S with components between 0 to 9 and N=3. Calculate the determinant by randomly picking one of the ith row of the matrix. Using a loop to multiply each jth element of the selected ith row by its minor i.e, the determinant of the (N-1xN-1) matrix obtained deleting the ith row and the jth column from matrix S(i,j).If i+j is odd multiply each product by -1 use matlab function mod(x,y) with x=i+y and y=2 to determine the sign of the product.Sum all product.
  댓글 수: 3
Ahmar Yanis
Ahmar Yanis 2022년 10월 4일
S = randi([0,9],3,3)
% Random picking the row
k = randi(size(S,1));
for i =K
for j=1:size(S)
This is the part which i dont understand
#Using a loop to multiply each jth element of the selected ith row by its minor i.e, the determinant of the (N-1xN-1)
end
end
Torsten
Torsten 2022년 10월 4일
If you don't understand, you should read this article:

답변 (0개)

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by