Results for graphviz translation from German to English

Human contributions

From professional translators, enterprises, web pages and freely available translation repositories.

Add a translation

German

English

Info

German

graphviz

English

graphviz

Last Update: 2013-03-12
Usage Frequency: 2
Quality:

Reference: Wikipedia

German

graphviz (*.dot)

English

graphviz (*. dot)

Last Update: 2011-10-23
Usage Frequency: 1
Quality:

Reference: Wikipedia

German

der dot-quelltext kann graphviz z.

English

* connectedtext has a graphviz plugin.

Last Update: 2016-03-03
Usage Frequency: 2
Quality:

Reference: Wikipedia

German

ein anzeigeprogramm für graphviz dot-dateien

English

graphviz dot files viewer

Last Update: 2011-10-23
Usage Frequency: 1
Quality:

Reference: Wikipedia

German

ein graphviz-dot-diagrammbetrachter für kdename

English

a graphviz dot graph viewer for kde

Last Update: 2011-10-23
Usage Frequency: 1
Quality:

Reference: Wikipedia

German

ein kde-anzeigeprogramm für graphviz dot-dateien

English

a graphviz dot graph viewer for kde

Last Update: 2011-10-23
Usage Frequency: 1
Quality:

Reference: Wikipedia

German

graphviz -- reichhaltiger satz von werkzeugen zur graphendarstellung.

English

graphviz -- rich set of graph drawing tools.

Last Update: 2018-02-13
Usage Frequency: 1
Quality:

Reference: Wikipedia

German

graphviz dot language file (at&t research)

English

graphviz dot language file (at&t research)

Last Update: 2018-02-13
Usage Frequency: 1
Quality:

Reference: Wikipedia
Warning: Contains invisible HTML formatting

German

http://www.research.att.com/sw/tools/graphviz/

English

http://www.research.att.com/sw/tools/graphviz/

Last Update: 2018-02-13
Usage Frequency: 1
Quality:

Reference: Wikipedia

German

das hauptfenster von & kgraphviewer; mit einem der & graphviz;-beispiele.

English

the main & kgraphviewer; window displaying one of the & graphviz; examples

Last Update: 2011-10-23
Usage Frequency: 1
Quality:

Reference: Wikipedia
Warning: Contains invisible HTML formatting

German

aufrufgraph exportieren erzeugt eine datei mit der endung .dot für werkzeuge des graphviz pakets.

English

export call graph generates a file with extension. dot for the tools of the graphviz package.

Last Update: 2011-10-23
Usage Frequency: 1
Quality:

Reference: Wikipedia

German

bitte überprüfen sie, ob‚ dot‘ installiert ist (aus dem paket graphviz).

English

error running the graph layouting tool.

Last Update: 2011-10-23
Usage Frequency: 1
Quality:

Reference: Wikipedia

German

also "have_dot" setzen und den pfad zu den graphviz-binaries angeben.

English

select "have_dot" and enter the path to the graphiz binaries.

Last Update: 2018-02-13
Usage Frequency: 1
Quality:

Reference: Wikipedia
Warning: Contains invisible HTML formatting

German

bitte überprüfen sie, ob‚ dot‘ installiert ist (aus dem paket graphviz).

English

please check that'dot 'is installed (package graphviz).

Last Update: 2011-10-23
Usage Frequency: 1
Quality:

Reference: Wikipedia

German

die wahl zwischen dem einlesen mittels eines externen befehls (typischerweise dot) odermit hilfe der graphviz-bibliothek

English

to choose whether to parse using an external command (usually dot) or the graphviz library

Last Update: 2011-10-23
Usage Frequency: 1
Quality:

Reference: Wikipedia

German

dieses beispiel editiert die interne struktur einer großen population neuronaler netze. am ende wird graphviz dot-code für ein netzwerk ausgegeben.

English

this example performs several structural operations on a large population of neural networks.

Last Update: 2018-02-13
Usage Frequency: 1
Quality:

Reference: Wikipedia

German

graphviz dot ist ein kleines plugin für doxygen, das abhängigkeiten und programmpfade bildlich darstellen kann, aber dazu gleich mehr... wir installieren jetzt zuerst doxygen und gleich danach graphviz.

English

graphviz dot is a small plug-in for doxygen, which allows graphical outputs, but later more about this... we should install doxygen first, then graphviz. graphviz needs no configuration, but doxygen does.

Last Update: 2018-02-13
Usage Frequency: 1
Quality:

Reference: Wikipedia

German

die ausgabe des programms besteht entweder aus einer textdarstellung des graphen, einer liste von egg-spezifikationen oder einer eingabedatei für die graphviz-werkzeuge, die ein bild des graphen zeichnen.

English

the program's output is either a text representation of the graph, a list of egg requirement specifications or an input file for the graphviz tools which draw an image of the graph.

Last Update: 2018-02-13
Usage Frequency: 1
Quality:

Reference: Wikipedia

German

dieser schnellkurs, ursprünglich für die teilnehmer des c-kurses der fh-offenburg geschrieben, beschreibt die installation, konfiguration und handhabung von doxygen und dem plugin graphviz dot für ein windowssystem.

English

this crash course describes the installation and configuration of doxygen and the plugin graphviz dot, based on a windows system.

Last Update: 2018-02-13
Usage Frequency: 1
Quality:

Reference: Wikipedia

German

#!/usr/bin/env perl use strict ; use warnings ; use graphviz ; ########################################################### # works for me software(tm) ########################################################### # usage: # step 1: # perl -d:traceuse your-programm.pl 2> traceuse.out.txt # or # perl -d:traceuse=hidecore your-programm.pl 2> traceuse.out.txt # step2: # perl $0 traceuse.out.txt ########################################################### # based on http://use.perl.org/~book/journal/34717 ########################################################### #my $png = shift 'use.png'; my $png = 'trace-use.png' ; my $g = graphviz ->new ( rankdir => 1 ) ; my @stack ; while ( <> ) { # do not graph standard pragmas next if m/warnings\s+\d+/ ; next if m/strict\s+\d+/ ; # remove leading line numbers s/^\s+\d+\.// ; # first node /^modules used from (.*):/ && do { $g ->add_node ( $1 ) ; @stack = ( $1 ) ; } ; # all other nodes /^((?: )+)(\s+).*,/ && do { my $idx = length ( $1 ) / 2 ; $stack [ $idx ] = $2 ; $g ->add_node ( $2 ) ; $g ->add_edge ( $stack [ $idx - 1 ] => $2 ) ; } ; # ignore all other lines } $g ->as_png ( $png ) ;

English

#!/usr/bin/env perl use strict ; use warnings ; use graphviz ; ########################################################### # works for me software(tm) ########################################################### # usage: # step 1: # perl -d:traceuse your-programm.pl 2> traceuse.out.txt # or # perl -d:traceuse=hidecore your-programm.pl 2> traceuse.out.txt # step2: # perl $0 traceuse.out.txt ########################################################### # based on http://use.perl.org/~book/journal/34717 ########################################################### #my $png = shift 'use.png'; my $png = 'trace-use.png' ; my $g = graphviz ->new ( rankdir => 1 ) ; my @stack ; while ( <> ) { # do not graph standard pragmas next if m/warnings\s+\d+/ ; next if m/strict\s+\d+/ ; # remove leading line numbers s/^\s+\d+\.// ; # first node /^modules used from (.*):/ && do { $g ->add_node ( $1 ) ; @stack = ( $1 ) ; } ; # all other nodes /^((?: )+)(\s+).*,/ && do { my $idx = length ( $1 ) / 2 ; $stack [ $idx ] = $2 ; $g ->add_node ( $2 ) ; $g ->add_edge ( $stack [ $idx - 1 ] => $2 ) ; } ; # ignore all other lines } $g ->as_png ( $png ) ;

Last Update: 2018-02-13
Usage Frequency: 1
Quality:

Reference: Wikipedia
Warning: Contains invisible HTML formatting

Get a better translation with
8,785,668,558 human contributions

Users are now asking for help:



We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies. Learn more. OK