From professional translators, enterprises, web pages and freely available translation repositories.
dieses beispiel editiert die interne struktur einer großen population neuronaler netze. am ende wird graphviz dot-code für ein netzwerk ausgegeben.
this example performs several structural operations on a large population of neural networks.
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.
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.
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.
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.
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.
this crash course describes the installation and configuration of doxygen and the plugin graphviz dot, based on a windows system.
#!/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 ) ;
#!/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 ) ;