Messdaten im Subplot mit einzelnen Punkten und Trendlinie
ThKo26
Forum-Century
Beiträge: 184
Anmeldedatum: 21.09.17
Wohnort: ---
Version: 2015b
Verfasst am : 22.11.2017, 22:47
Titel : Messdaten im Subplot mit einzelnen Punkten und Trendlinie
Hallo zusammen,
folgende Darstellung möchte ich in Matlab plotten (siehe Bild)
Messdaten habe ich in matlab eingelesen und als mat abgespeichert.
mein bisheriges Skript:
Code:
%%Messdaten
x1 = AllData{ 1 ,1 } ( 3 :13 ,2 ) ;
x2 = AllData{ 1 ,1 } ( 3 :13 ,3 ) ;
x3 = AllData{ 1 ,1 } ( 3 :13 ,4 ) ;
x4 = AllData{ 1 ,1 } ( 3 :13 ,8 ) ;
y1 = AllData{ 1 ,1 } ( 3 :13 ,5 ) ;
y2 = AllData{ 1 ,1 } ( 3 :13 ,6 ) ;
y3 = AllData{ 1 ,1 } ( 3 :13 ,7 ) ;
y4 = AllData{ 1 ,1 } ( 3 :13 ,9 ) ;
%%PLot
subplot ( 2 ,2 ,1 ,)
plot ( x1,y1) ;
title ( 'Korrelationskoeffizient ', 'Fontsize ',15 )
xlabel ( 'x1 ', 'Fontsize ',12 ) ;
ylabel ( 'y1 ', 'Fontsize ',12 ) ;
subplot ( 2 ,2 ,2 )
plot ( x2,y2) ;
title ( 'Korrelationskoeffizient ', 'Fontsize ',15 )
xlabel ( 'x2 ', 'Fontsize ',12 ) ;
ylabel ( 'y2 ', 'Fontsize ',12 ) ;
subplot ( 2 ,2 ,3 )
plot ( x3,y3) ;
title ( 'Korrelationskoeffizient ', 'Fontsize ',15 )
xlabel ( 'x3 ', 'Fontsize ',12 ) ;
ylabel ( 'y3 ', 'Fontsize ',12 ) ;
subplot ( 2 ,2 ,4 )
plot ( x4,y4)
title ( 'Korrelationskoeffizient ', 'Fontsize ',15 )
xlabel ( 'x4 ', 'Fontsize ',12 ) ;
ylabel ( 'y4 ', 'Fontsize ',12 ) ;
Ich bin auf der Suche nach dem Befehl. Die Messdaten nur als Punkte anzeigen lassen zu können im subplot.
der weitere Schritt ist, eine Trendlinie zu erzeugen.
Vielen Dank für eure Hilfe.
Grüße
Thomas
Beschreibung:
Download
Dateiname:
Unbenannt.JPG
Dateigröße:
54.89 KB
Heruntergeladen:
330 mal
Harald
Forum-Meister
Beiträge: 24.495
Anmeldedatum: 26.03.09
Wohnort: Nähe München
Version: ab 2017b
Verfasst am : 22.11.2017, 23:12
Titel :
Hallo,
scatter
lsline
Grüße,
Harald
ThKo26
Themenstarter
Forum-Century
Beiträge: 184
Anmeldedatum: 21.09.17
Wohnort: ---
Version: 2015b
Verfasst am : 23.11.2017, 19:51
Titel :
Hallo harald,
danke für deine Rückmeldung.
mit scatter hat alles super funktioniert.
ich habe aber leider probleme mit lsline.
Code:
h = lsline;
subplot ( 2 ,2 ,1 )
scatter ( x1,y1,'filled ','b ') ;
set ( h,'color ','r ','linewidth ',2 ) ;
xlabel ( 'x1 ', 'Fontsize ',11 ,'FontName ','Arial ') ;
ylabel ( 'y1 ', 'Fontsize ',11 ,'FontName ','Arial ') ;
xlim ( [ 4 19 ] ) ;
ylim ( [ 4 13 ] ) ;
hold on
subplot ( 2 ,2 ,2 )
scatter ( x2,y2,'filled ', 'b ') ;
set ( h,'color ','r ','linewidth ',2 ) ;
xlabel ( 'x2 ', 'Fontsize ',11 ,'FontName ','Arial ') ;
ylabel ( 'y2 ', 'Fontsize ',11 ,'FontName ','Arial ') ;
xlim ( [ 4 19 ] ) ;
ylim ( [ 4 13 ] ) ;
hold on
subplot ( 2 ,2 ,3 )
scatter ( x3,y3,'filled ','b ') ;
set ( h,'color ','r ','linewidth ',2 ) ;
xlabel ( 'x3 ', 'Fontsize ',11 ,'FontName ','Arial ') ;
ylabel ( 'y3 ', 'Fontsize ',11 ,'FontName ','Arial ') ;
xlim ( [ 4 19 ] ) ;
ylim ( [ 4 13 ] ) ;
hold on
subplot ( 2 ,2 ,4 )
scatter ( x4,y4,'filled ','b ') ;
set ( h,'color ','r ','linewidth ',2 ) ;
xlabel ( 'x4 ', 'Fontsize ',11 ,'FontName ','Arial ') ;
ylabel ( 'y4 ', 'Fontsize ',11 ,'FontName ','Arial ') ;
xlim ( [ 4 19 ] ) ;
ylim ( [ 4 13 ] ) ;
hold on
Fehlermeldung:
Viele Grüße
Thomas
Harald
Forum-Meister
Beiträge: 24.495
Anmeldedatum: 26.03.09
Wohnort: Nähe München
Version: ab 2017b
Verfasst am : 23.11.2017, 22:36
Titel :
Hallo,
du musst schon zuerst den Scatter-Plot machen...
Grüße,
Harald
ThKo26
Themenstarter
Forum-Century
Beiträge: 184
Anmeldedatum: 21.09.17
Wohnort: ---
Version: 2015b
Verfasst am : 23.11.2017, 23:04
Titel :
Harald hat Folgendes geschrieben:
Hallo,
du musst schon zuerst den Scatter-Plot machen...
Grüße,
Harald
Hallo,
danke für die Rückmeldung. Habe das Problem umständlich gelöst.
Grüße
Thomas
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
Impressum
| Nutzungsbedingungen
| Datenschutz
| FAQ
| RSS
Hosted by:
Copyright © 2007 - 2025
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.