adjmat unrecognized function in Matlab

조회 수: 3 (최근 30일)
Diana
Diana 2021년 2월 15일
답변: Jian Yuan 2021년 3월 19일
I'm trying to run a code and it has the function
t5 = diff(lambda);
t5 = adjmat(t5);
but I got the error that adjmat unrecognized function , so what is the problem?
  댓글 수: 6
Diana
Diana 2021년 2월 15일
The theory is the part of the differential, but the adjmat is not related to theory
Walter Roberson
Walter Roberson 2021년 2월 15일
At the top of your function put in
adjmat = @(M) mat2gray(M);

댓글을 달려면 로그인하십시오.

답변 (2개)

Matt J
Matt J 2021년 2월 15일
Is adjmat supposed to be computing the adjugate of the matrix t5. If so, you might be able to use this instead,

Jian Yuan
Jian Yuan 2021년 3월 19일
After diff function, the dimention of an array decreased by 1. I checked here Adjmat(t5) seems to align that. So you may try t5(:,1) = [] to replace t5 = adjmat(t5).

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by