WICHTIG: Der Betrieb von goMatlab.de wird privat finanziert fortgesetzt. - Mehr Infos...

Mein MATLAB Forum - goMatlab.de

Mein MATLAB Forum

 
Gast > Registrieren       Autologin?   

Partner:




Forum
      Option
[Erweitert]
  • Diese Seite per Mail weiterempfehlen
     


Gehe zu:  
Neues Thema eröffnen Neue Antwort erstellen

App Designer User Interface erinnert sich an den alten Plot

 

Matlab Noob
Forum-Newbie

Forum-Newbie


Beiträge: 8
Anmeldedatum: 28.10.21
Wohnort: ---
Version: ---
     Beitrag Verfasst am: 03.11.2021, 09:46     Titel: App Designer User Interface erinnert sich an den alten Plot
  Antworten mit Zitat      
hallo,

hab aber das problem, dass sich mein user interface an den letzten plot erinnert. dass heißt wenn ich das programm neu starte, dann funktionert es mit der Fehlermeldung. sobald ich es aber ein mal geplottet habe und dann nochmal runne, erinnert es sich an den letzten plot und auch wenn ich nichts eingebe und auch keine excel datei auswähle, plottet es einfach das von davor. also auch wenn ich nur eine sache weglasse übernimmt es die von dem plot davor...

weißt jemand wie ich das verhindern kann?

merci

hier noch mein code
Code:
  [file, path] = uigetfile('*.xlsx','Select your Excel file','C:\');
           
           
             if isequal(file,0)
                 msgbox('Please input an Excel file')
                 
           
               
               
            else
                 [status,sheets]=xlsfinfo([path file]);
               selectedsheet=listdlg('ListString',sheets);
               
               msgbox('choose title, x and y axis')
               
                global t
                t = xlsread(fullfile(path, file),selectedsheet);
                app.UITable.Data = t;
               
                x1 = 0;
                x2 = 0;
               
                % Set column names as a pull down menu
                %app.xDropDown.Items = t.Properties.VariableNames;
                %app.yDropDown.Items = t.Properties.VariableNames;
               
                %plot(app.UIAxes, app.UITable.Data.(app.xDropDown.Value), app.UITable.Data.(app.yDropDown.Value));
            end
           
        end

        % Callback function
        function xDropDownValueChanged(app, event)
            value = app.xDropDown.Value;
           
            plot(app.UIAxes, app.UITable.Data.(app.xDropDown.Value), app.UITable.Data.(app.yDropDown.Value));
        end

        % Callback function
        function yDropDownValueChanged(app, event)
            value = app.yDropDown.Value;
           
            plot(app.UIAxes, app.UITable.Data.(app.xDropDown.Value), app.UITable.Data.(app.yDropDown.Value));
        end

        % Button pushed function: PlotButton
        function PlotButtonPushed(app, event)
        global t b titlename xaxis yaxis x1 x2 n;
           
                if isempty(xaxis)
                msgbox('to plot select xaxis');
               
                elseif isempty(yaxis)
                msgbox('to plot select yaxis')
               
                elseif isempty(titlename)
                msgbox('to plot select titlename')
               
                elseif isequal(b,0)
                    msgbox('to plot select column')
                   
                elseif isequal(x2,0)
                    msgbox('to plot select ends at')
           
            else
           
            O=t(:,1:b)
           
            sizeO = size(O);
            n = sizeO(1,1);
           
            x = linspace(x1, x2, n);
           
            %figH = figure;
            %set(figH,'Name',titlename,'NumberTitle','off');
           
            plot(x, O);
           
           
           
            title(titlename)
            xlabel(xaxis)
            ylabel(yaxis)
           
            legend
           
                end
               
           

        end

        % Value changed function: titlenameTextArea
        function titlenameTextAreaValueChanged(app, event)
            global titlename
            titlename = app.titlenameTextArea.Value;
           
        end

        % Value changed function: xaxisnameTextArea
        function xaxisnameTextAreaValueChanged(app, event)
           global xaxis
            xaxis = app.xaxisnameTextArea.Value;
         
        end

        % Value changed function: yaxisnameTextArea
        function yaxisnameTextAreaValueChanged(app, event)
            global yaxis
            yaxis= app.yaxisnameTextArea.Value;
           
        end

        % Cell selection callback: UITable
        function UITableCellSelection(app, event)
            global indices
            indices = event.Indices
           
        end

        % Value changed function: columnEditField
        function columnEditFieldValueChanged(app, event)
            global b
            b = app.columnEditField.Value;
           
            t2 = zeros(b,1);
            for i = 1:b
                t2(i) = "insert text";
            end
            app.UITable2.Data = t2;
           
            msgbox('select Legend lines in the table')
           
        end

        % Value changed function: startsatEditField
        function startsatEditFieldValueChanged(app, event)
            global x1
            x1 = app.startsatEditField.Value;
           
        end

        % Value changed function: endsatEditField
        function endsatEditFieldValueChanged(app, event)
            global x2
            x2 = app.endsatEditField.Value;
           
        end

        % Callback function
        function pointsEditFieldValueChanged(app, event)
            global n
            n = app.pointsEditField.Value;
           
        end

        % Cell edit callback: UITable2
        function UITable2CellEdit(app, event)
            indices = event.Indices;
            newData = event.NewData;
Private Nachricht senden Benutzer-Profile anzeigen


Neues Thema eröffnen Neue Antwort erstellen



Einstellungen und Berechtigungen
Beiträge der letzten Zeit anzeigen:

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
.





 Impressum  | Nutzungsbedingungen  | Datenschutz | FAQ | goMatlab RSS Button RSS

Hosted by:


Copyright © 2007 - 2024 goMatlab.de | Dies ist keine offizielle Website der Firma The Mathworks

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.