Verfasst am: 30.07.2012, 17:00
Titel: ginput mit pushbutton
Hallo gomatlab Gemeinschaft,
ich möchte über einen button die ginput fkt auf rufen und ausführen.
Code:
% --- Executes on button press in pushbutton. function pushbutton_Callback(hObject, eventdata, handles) hold on
% Initially, the list of points is empty.
xy = [];
n = 0;
% Loop, picking up the points. disp('Left mouse button picks points.') disp('Right mouse button picks last point.')
but = 1;
while but == 1 [xi,yi,but] = ginput(1);
plot(xi,yi,'ro')
n = n+1;
xy(:,n) = [xi;yi];
end % Interpolate with a spline curve and finer spacing.
t = 1:n;
ts = 1: 0.1: n;
xys = spline(t,xy,ts);
% Plot the interpolated curve. plot(xys(1,:),xys(2,:),'b-');
hold off
Der Fehler war. Ich hatte eine ginput.m datei im ordner und auf die hatte Matlab zu gegriffen. Nach dem ich das entfernt hatte lief es einwandfrei.
Danke für deine Hilfe
Einstellungen und Berechtigungen
Du kannst Beiträge in dieses Forum schreiben. Du kannst auf Beiträge in diesem Forum antworten. Du kannst deine Beiträge in diesem Forum nicht bearbeiten. Du kannst deine Beiträge in diesem Forum nicht löschen. Du kannst an Umfragen in diesem Forum nicht mitmachen. Du kannst Dateien in diesem Forum posten Du kannst Dateien in diesem Forum herunterladen
MATLAB, Simulink, Stateflow, Handle Graphics, Real-Time Workshop, SimBiology, SimHydraulics, SimEvents, and xPC TargetBox are registered trademarks and The MathWorks, the L-shaped membrane logo, and Embedded MATLAB are trademarks of The MathWorks, Inc.