Borrar filtros
Borrar filtros

Info

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

what happened with this code?

1 visualización (últimos 30 días)
romasha
romasha el 1 de Feb. de 2014
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
when i run this code following error is generated
% --- Executes just before fgui2 is made visible.
function fgui2_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% varargin command line arguments to fgui2 (see VARARGIN)
% Choose default command line output for fgui2
handles.output = hObject;
imgNameList = {'images.jpg','images (1).jpg','images (2).jpg','download.jpg','images (4).jpg','images (5).jpg','images (6).jpg','images (7).jpg','eye3.jpg'};
subplot(2,2,4);
pause on;
for i = 1:length(imgNameList)
a = imread(imgNameList{i});
imshow(a);
drawnow;
pause(3);
end
% Update handles structure
guidata(hObject, handles);
*Error*
function varargout = fgui2(varargin)
|
Error: Function definitions are not permitted in this context.

Respuestas (1)

Walter Roberson
Walter Roberson el 1 de Feb. de 2014
You cannot create functions at the MATLAB command prompt: you have to write them into files.
If it is already in a file, then there is something before that in the file that has been interpreted as being a script instead of a function. The first non-comment line of the file needs to start with "function".

La pregunta está cerrada.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by