the files which I am working on are these
how to solve "Undefined function" problem?
42 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
mohanish
el 24 de Sept. de 2018
Comentada: Stephen23
el 10 de Abr. de 2024
I am writing a code where i used melcepsta function and it worked fine for the first time. Later I closed Matlab completely and opened it 3 days later to run the same program, but it did not run and it gave me this error.. "Undefined function 'Melcepsta'". Before running the program after 3 days it asked whether to change the path of the .m file or add to the path.. I selected add to the path.. I have attached the .m and .fig file along. Please, any help will be appreciated.
Respuesta aceptada
OCDER
el 24 de Sept. de 2018
Add the path where your missing function is to your Matlab working path. Read more here.
6 comentarios
Más respuestas (1)
Wilbert Clarke
el 10 de Abr. de 2024
J = 0.02;
b = 0.1;
K = 0.01;
R = 1.1;
L = 0.5;
numerator = K;
denominator = [J, b, K^2];
M = tf(numerator, denominator);
T = feedback(M, 1);
C = 1/s;
one_minus_T = 1 - T;
E_ss = limit(s * C * one_minus_T, s, 0)
1 comentario
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!