I keep getting error for undefined function or variable, and I am not sure how to fix it
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Naveed Hossain
el 3 de Sept. de 2018
Comentada: Naveed Hossain
el 3 de Sept. de 2018
I am getting error on line 5 for the code below. My Y1 and Dmge is already in the workspace, but they keep saying that my 'x' is an undefined variable or function. Same for my 'y'.
function E=goemp_fit(x0)
A = x0(1); B=x0(2); C=x0(3);
x=Y1;
y = Dmge;
E = sum((A*exp(-exp(-B*(x-C)))-y).^2);
0 comentarios
Respuesta aceptada
Greg
el 3 de Sept. de 2018
Editada: Greg
el 3 de Sept. de 2018
Post the full error text. I'm pretty sure it doesn't say line 5.
Y1 and Dmge might be defined in your base workspace, but goemp_fit is a function. Read the documentation of function workspaces. In short, they have no acess to the base workspace, so Y1 and Dmge are unknown, hence the error (on line 3, not 5).
Más respuestas (0)
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!