Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Error: too many outputs

1 visualización (últimos 30 días)
Shelby Schreckenberg
Shelby Schreckenberg el 25 de Feb. de 2020
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
function ForwardSub(L,b)
%Forward substitution method to compute Y= L/b
s = length(b); %no of coloumns
Y = zeros(s,1); %the answer Y is initialized to zero
Y(1) = b(1)/L(1,1); %the first diagonal entry
for j=2:s
Y(j)=b(j) - sum(L(j, 1:j-1)).*Y(1:j-1)/L(j,j); %solve for other elements of Y
end
end

Respuestas (1)

madhan ravi
madhan ravi el 25 de Feb. de 2020
function Y = ForwardSub(L,b) % you forgot to assign the output in the function definition

Community Treasure Hunt

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

Start Hunting!

Translated by