Why do I keep getting an undefined function for 'deter'?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Emily Gallagher
el 24 de Sept. de 2019
Comentada: James Tursa
el 24 de Sept. de 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 comentario
James Tursa
el 24 de Sept. de 2019
What is the purpose of creating the A matrix inside this function?
Respuesta aceptada
KALYAN ACHARJYA
el 24 de Sept. de 2019
Editada: KALYAN ACHARJYA
el 24 de Sept. de 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.
Hope it helps!
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!