Verfasst am: 04.02.2021, 09:34
Titel: Pfeil vom textbox bis zum bestimmten Punkt auf dem Diagramm
Hallo zusammen!
ich möchte vom textbox bis zum bestimmten Punkt auf dem Diagramm einen Pfeil, sieh Bild, mittels code aufzeichnen. Die Punkte auf dem Diagramm sind die Variablen.
wenn das hilft, kopiere ich code für Plot, welche ich verwende.
Code:
plot(LC_1(:,10),LC_1(:,4),'Color',"red"); % zuers x-Achse und dann y-Achse xlabel('Mean displacement [mm]','FontWeight',"bold"); % Beschriftung von x-Achse ylabel('Horizontal load[kN]','FontWeight',"bold"); % Beschriftung von y-Achse
axis_LC1 = gca; % variable für limit y-Achse set(axis_LC1,"YLim",[-200,200])% limit y-Achse
%Primäres Hauptgitter
%----------------------------
grid on;
ax = gca;
%c = ax.GridColor;
ax.GridColor = 'black';%Farbe des primären Hauptgitters
%----------------------------
% erste zwie Zahlen sind Koordinaten vom Text im Diagramm
%text(-29,70,Bearing_name,'FontWeight',"bold",'ButtonDownFcn','latex')% Name of bearing
dim_1 = [0.140.6050.30.3]; % Position vom 'textbox' im Diagramm in [%]
h_annotation_1=annotation('textbox',dim_1,'String',Bearing_name);
h_annotation_1.BackgroundColor = 'white';
h_annotation_1.FitBoxToText = "on";
h_annotation_1.FontWeight = "bold";
%----------------------------
% Kräfte
dim_2 = [0.1400.250.8]; % Position vom 'textbox' im Diagramm in [%]
str_2 = {"F_v = " + F_v + " kN"};
h_annotation_2=annotation('textbox',dim_2,'String',str_2);
h_annotation_2.BackgroundColor = 'white';
h_annotation_2.FitBoxToText = "on";
h_annotation_2.FontWeight = "bold";
%----------------------------
% Reibwert
dim_3 = [0.1400.250.26]; % Position vom 'textbox' im Diagramm in [%]
str_3 = {"\mu_{stat} = " + mue_LC1_static + " %","\mu_{dyn} = " + mue_LC1_dynymic + " %"};
h_annotation_3=annotation('textbox',dim_3,'String',str_3);
h_annotation_3.BackgroundColor = 'white';
h_annotation_3.FitBoxToText = "on";
h_annotation_3.FontWeight = "bold";
%----------------------------
% Kräfte
dim_4 = [0.6500.250.26]; % Position vom 'textbox' im Diagramm in [%]
str_4 = {"F_{h.max} = " + maximum_Fh_LC1 + " kN"};
h_annotation_2=annotation('textbox',dim_4,'String',str_4);
h_annotation_2.BackgroundColor = 'white';
h_annotation_2.FitBoxToText = "on";
h_annotation_2.FontWeight = "bold";
%----------------------------
% Kräfte
dim_5 = [0.3800.250.26]; % Position vom 'textbox' im Diagramm in [%]
str_5 = {"F_{h.dyn} = " + dyn_Fh_LC1 + " kN"};
h_annotation_2=annotation('textbox',dim_5,'String',str_5);
h_annotation_2.BackgroundColor = 'white';
h_annotation_2.FitBoxToText = "on";
h_annotation_2.FontWeight = "bold";
%----------------------------
1.) Ask MATLAB Documentation
2.) Search gomatlab.de, google.de or MATLAB Answers
3.) Ask Technical Support of MathWorks
4.) Go mad, your problem is unsolvable ;)
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.