Borrar filtros
Borrar filtros

How to end code folding

1 visualización (últimos 30 días)
Mohamad Roslan Mohd Roshdi
Mohamad Roslan Mohd Roshdi el 22 de En. de 2016
Comentada: Mohamad Roslan Mohd Roshdi el 23 de En. de 2016
Dear friend I'm new to Matlab and have zero coding experience I had this problem as i want to write new command
It keep written under that function loop, I tried to use 'end', but return error as Illegal use of reserved keyword "end"
How to exit the code folding for the function and start new command line?
*sorry for my english
  2 comentarios
Stephen23
Stephen23 el 22 de En. de 2016
Editada: Stephen23 el 22 de En. de 2016
code folding does not change the code itself, it only changes how the code is displayed. The error message tells you that you have written something wrong with your code, but the code folding cannot fix it, just show it, or hide it.
Try clicking on the small + symbol on the left-hand side of the editor to unfold the code (i.e. to see more of the code).
If you upload the code then we can tell you what is causing the error.
Mohamad Roslan Mohd Roshdi
Mohamad Roslan Mohd Roshdi el 22 de En. de 2016
% --- Executes on button press in Apply.
function Apply_Callback(hObject, eventdata, handles)
% hObject handle to Apply (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
mAs=(floor(mA))
Above it the code generated from GUI builder I try to write another code but it always end up being under Apply_Callback function.
How do I write code outside Apply_Callback function?

Iniciar sesión para comentar.

Respuesta aceptada

Image Analyst
Image Analyst el 22 de En. de 2016
If you want a new function that is not to be considered as part of the Apply_Callback() function, then you need to use the "function" keyword:
function Apply_Callback(hObject, eventdata, handles)
% code for Apply_Callback()
% Now define your new function:
function mAs = MyNewFunction(ma)
mAs=(floor(mA));
  2 comentarios
Walter Roberson
Walter Roberson el 23 de En. de 2016
Note that it is not possible in MATLAB to have a file that has both functions and "command line" (scripts). In a function file, everything has to be in a function.
Mohamad Roslan Mohd Roshdi
Mohamad Roslan Mohd Roshdi el 23 de En. de 2016
I see, that explain everything. No wonder it keep trying to take my code under one of those function
Thank you :)

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by