Plotaggio derivate funzioni con GUI matlab

di il
2 risposte

Plotaggio derivate funzioni con GUI matlab

Buonasera, vorrei creare un GUI con MATLAB che calcoli la derivata approssimata attraverso la funzione central di qualsiasi funzione che l'utente vuole inserire. Allego ciò che ho scritto in quanto purtroppo non riesco a far funzionare il programma.

function varargout = untitled6(varargin)
% UNTITLED6 MATLAB code for untitled6.fig
% UNTITLED6, by itself, creates a new UNTITLED6 or raises the existing
% singleton*.
%
% H = UNTITLED6 returns the handle to a new UNTITLED6 or the handle to
% the existing singleton*.
%
% UNTITLED6('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in UNTITLED6.M with the given input arguments.
%
% UNTITLED6('Property','Value',...) creates a new UNTITLED6 or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before untitled6_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to untitled6_OpeningFcn via varargin.
%
% *See GUI Options on GUIDE's Tools menu. Choose "GUI allows only one
% instance to run (singleton)".
%
% See also: GUIDE, GUIDATA, GUIHANDLES

% Edit the above text to modify the response to help untitled6

% Last Modified by GUIDE v2.5 17-Nov-2018 17:34:18

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @untitled6_OpeningFcn, ...
'gui_OutputFcn', @untitled6_OutputFcn, ...
'gui_LayoutFcn', [] , ...
'gui_Callback', []);
if nargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end

if nargout
[varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT


% --- Executes just before untitled6 is made visible.
function untitled6_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 untitled6 (see VARARGIN)

% Choose default command line output for untitled6
handles.output = hObject;

% Update handles structure
guidata(hObject, handles);

% UIWAIT makes untitled6 wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = untitled6_OutputFcn(hObject, eventdata, handles)
% varargout cell array for returning output args (see VARARGOUT);
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)

% Get default command line output from handles structure
varargout{1} = handles.output;


% --- Executes on button press in pushbutton1.
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
a=str2double(get(handles.edit1,'String'));
b=str2double(get(handles.edit2,'String'));
nx=str2double(get(handles.edit3,'String'));
x=linspace(a,b,nx+1);
dx=(a+b)/nx;
u=get(handles.edit4,'String');
cdu=zeros(1,nx+1);
cdu(2:nx)=central(u,dx);
cdu(1)=(4*u(2)-3*u(1)-u(3))/(2*dx);
cdu(nx+1)=(-4*u(nx)+3*u(nx+1)+u(nx-1))/2/dx;
axes(handles.axes1);
plot(feval(cdu));


function edit1_Callback(hObject, eventdata, handles)
% hObject handle to edit1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of edit1 as text
% str2double(get(hObject,'String')) returns contents of edit1 as a double


% --- Executes during object creation, after setting all properties.
function edit1_CreateFcn(hObject, eventdata, handles)
% hObject handle to edit1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end



function edit2_Callback(hObject, eventdata, handles)
% hObject handle to edit2 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of edit2 as text
% str2double(get(hObject,'String')) returns contents of edit2 as a double


% --- Executes during object creation, after setting all properties.
function edit2_CreateFcn(hObject, eventdata, handles)
% hObject handle to edit2 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end



function edit3_Callback(hObject, eventdata, handles)
% hObject handle to edit3 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of edit3 as text
% str2double(get(hObject,'String')) returns contents of edit3 as a double


% --- Executes during object creation, after setting all properties.
function edit3_CreateFcn(hObject, eventdata, handles)
% hObject handle to edit3 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end



function edit4_Callback(hObject, eventdata, handles)
% hObject handle to edit4 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of edit4 as text
% str2double(get(hObject,'String')) returns contents of edit4 as a double


% --- Executes during object creation, after setting all properties.
function edit4_CreateFcn(hObject, eventdata, handles)
% hObject handle to edit4 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end

2 Risposte

  • Re: Plotaggio derivate funzioni con GUI matlab

    Allego inoltre gli errori che mi da matlab:

    Unable to perform assignment because the left and right sides have a different number of elements.

    Error in untitled6>pushbutton1_Callback (line 88)
    cdu(2:nx)=central(u,dx);

    Error in gui_mainfcn (line 95)
    feval(varargin{:});

    Error in untitled6 (line 42)
    gui_mainfcn(gui_State, varargin{:});

    Error in
    matlab.graphics.internal.figfile.FigFile/read>@(hObject,eventdata)untitled6('pushbutton1_Callback',hObject,eventdata,guidata(hObject))
    Error while evaluating UIControl Callback.
  • Re: Plotaggio derivate funzioni con GUI matlab

    Pongo l'enfasi sulla parte fondamentale del codice scritto in precedenza

    % --- Executes on button press in pushbutton1.
    function pushbutton1_Callback(hObject, eventdata, handles)
    % hObject handle to pushbutton1 (see GCBO)
    % eventdata reserved - to be defined in a future version of MATLAB
    % handles structure with handles and user data (see GUIDATA)
    a=str2double(get(handles.edit1,'String'));
    b=str2double(get(handles.edit2,'String'));
    nx=str2double(get(handles.edit3,'String'));
    x=linspace(a,b,nx+1);
    dx=(a+b)/nx;
    u=get(handles.edit4,'String');
    cdu=zeros(1,nx+1);
    cdu(2:nx)=central(u,dx);
    cdu(1)=(4*u(2)-3*u(1)-u(3))/(2*dx);
    cdu(nx+1)=(-4*u(nx)+3*u(nx+1)+u(nx-1))/2/dx;
    axes(handles.axes1);
    plot(feval(cdu));
Devi accedere o registrarti per scrivere nel forum
2 risposte