adjmat unrecognized function in Matlab
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Walter Roberson
am 15 Feb. 2021
At the top of your function put in
adjmat = @(M) mat2gray(M);
Antworten (2)
Matt J
am 15 Feb. 2021
Is adjmat supposed to be computing the adjugate of the matrix t5. If so, you might be able to use this instead,
0 Kommentare
Jian Yuan
am 19 Mär. 2021
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).
0 Kommentare
Siehe auch
Kategorien
Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!