Gnuplot Daten Pfad entfernen

minkepatt

minkepatt

Aktives Mitglied
Thread Starter
Dabei seit
07.01.2006
Beiträge
156
Reaktionspunkte
0
Liebes Forum,
ich hoffe ich befinde mich mit meiner Frage nicht im falschen Forum - ich habe eine Frage zu gnuplot und da dies ja ursprünglich von Linux kommt nutze ich dieses Unterforum, sollte es das falsche sein bitte ich freundlich um Verschiebung.

Doch nun zur Frage,
ich möchte in Gnuplot 40 Datafiles ploten, mein Plot sieht bisher so aus:

http://img685.imageshack.us/img685/8029/fig.png

Wie ihr seht sind die Ganzen Pfade zu den Files sehr störend,

Gibt es die Möglichkeit dies Pfad-Ausgabe ausszuschalten?

Ich danke bereits im Vorfeld ganz herzlich für potentielle antworten,
mit bestem Gruss.
 
Hast du schon mal "set nokey" probiert?
 
wo müsste ich das hinschreiben?
mein code ist:

Code:
plot '/..../....../Desktop/code/out/output_00000.txt' with lines, '/..../....../Desktop/code/out/output_00001.txt' with lines, '/..../....../Desktop/code/out/output_00002.txt' with lines, '/..../....../Desktop/code/out/output_00003.txt' with lines, '/..../....../Desktop/code/out/output_00004.txt' with lines, '/..../....../Desktop/code/out/output_00005.txt' with lines, '/..../....../Desktop/code/out/output_00006.txt' with lines, '/..../....../Desktop/code/out/output_00007.txt' with lines, '/..../....../Desktop/code/out/output_00008.txt' with lines, '/..../....../Desktop/code/out/output_00009.txt' with lines, '/..../....../Desktop/code/out/output_00009.txt' with lines, '/..../....../Desktop/code/out/output_00010.txt' with lines, '/..../....../Desktop/code/out/output_00011.txt' with lines, '/..../....../Desktop/code/out/output_00012.txt' with lines, '/..../....../Desktop/code/out/output_00013.txt' with lines, '/..../....../Desktop/code/out/output_00014.txt' with lines, '/..../....../Desktop/code/out/output_00015.txt' with lines, '/..../....../Desktop/code/out/output_00016.txt' with lines, '/..../....../Desktop/code/out/output_00017.txt' with lines, '/..../....../Desktop/code/out/output_00018.txt' with lines, '/..../....../Desktop/code/out/output_00019.txt' with lines, '/..../....../Desktop/code/out/output_00020.txt' with lines, '/..../....../Desktop/code/out/output_00021.txt' with lines, '/..../....../Desktop/code/out/output_00022.txt' with lines, '/..../....../Desktop/code/out/output_00023.txt' with lines, '/..../....../Desktop/code/out/output_00024.txt' with lines, '/..../....../Desktop/code/out/output_00025.txt' with lines, '/..../....../Desktop/code/out/output_00026.txt' with lines, '/..../....../Desktop/code/out/output_00027.txt' with lines, '/..../....../Desktop/code/out/output_00028.txt' with lines, '/..../....../Desktop/code/out/output_00029.txt' with lines, '/..../....../Desktop/code/out/output_00030.txt' with lines, '/..../....../Desktop/code/out/output_00031.txt' with lines, '/..../....../Desktop/code/out/output_00034.txt' with lines, '/..../....../Desktop/code/out/output_00035.txt' with lines, '/..../....../Desktop/code/out/output_00036.txt' with lines, '/..../....../Desktop/code/out/output_00037.txt' with lines, '/..../....../Desktop/code/out/output_00038.txt' with lines, '/..../....../Desktop/code/out/output_00039.txt' with lines, '/..../....../Desktop/code/out/output_00040.txt' with linesers/....../Desktop/code/out/output_00039.txt' with lines, '/..../....../Desktop/code/out/output_00040.txt' wi/code/out/output_00040.txt'
 
davor. Im Endeffekt dort, wo du deinen ganzen Parameter spezifizierst.
 
Ich würde mal notitle als Parameter im plot-Befehl testen.
Also:

Code:
plot [B]notitle[/B] '/..../....../Desktop/code/out/output_00000.txt' [...]

EDIT: Ich habe es gerade mal selber ausprobiert: Beides führt zum Ziel, aber tafkas Variante ist besser, da du notitle bei jeder der 40 Datensätze dazuschreiben müsstest, wohingegen ein einziges set nokey davor das gleiche bewirkt.
 
Zuletzt bearbeitet:
wow :)
danke euch!
 
Zurück
Oben Unten