Effacer les filtres
Effacer les filtres

Why do I keep getting an undefined function for 'deter'?

2 vues (au cours des 30 derniers jours)
Emily Gallagher
Emily Gallagher le 24 Sep 2019
Commenté : James Tursa le 24 Sep 2019
Trying to find the determinant of an upper triangular matrix without using the built-in det function. Why do I keep getting an undefined function error for 'deter'?
function d = deter (U)
n = 4;
A = rand(n,n);
d = prod(diag(U));
end
  1 commentaire
James Tursa
James Tursa le 24 Sep 2019
What is the purpose of creating the A matrix inside this function?

Connectez-vous pour commenter.

Réponse acceptée

KALYAN ACHARJYA
KALYAN ACHARJYA le 24 Sep 2019
Modifié(e) : KALYAN ACHARJYA le 24 Sep 2019
function d=deter (U)
n=4;
A=rand(n,n);
d=prod(diag(U));
end
Save the function in new matlab file (save as deter.m), Next call the function from command window or another main script. Please note that you have pass the input arguments (U) to the function form command window or another main Matlab script as shown below.
76.png
Hope it helps!

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by