|
|
perl, eof, echo, unix...
|
13.10.2008 11:19
Martin
|
Nevedel jsem jak Predmet pojmenovat ale resim nasledujici probem:
Mam ulozena data(hodnoty) v souboru(napr. hodnoty.txt .dat to je jedno), dale program GnuPlot pro tvorbu grafu. Chci napsat program(perl) ktery mi tyto data nacte a zpracuje "gnuplotem" a nasledne ulozi graf. Bud nactenim nebo pres eof.
Posilam muj pokus..
print << "EOF"
set terminal postscript;
set output "/home/martin/graf2.ps";
plot [-3.14:3.14] sin(x), sin(x) with impulses;
EOF | gnuplot
|
|
|
Re: perl, eof, echo, unix...
|
13.10.2008 11:22
Martin
|
Jeste: nevim jestli se zde uzivaji strediky, ale zkousel jsem to s/bez a nedari se mi. Jeste bych chtel dodat ze jsem to zkousel pres echo, ale neni mi to uplne jasny..
..neco jako
echo " set terminal postscript
set output "..."
plot [] sin(x) " | gnuplot
Dekuji za pomoc |
|
|
Re: perl, eof, echo, unix...
|
13.10.2008 13:22
Hynek (Pichi) Vychodil
|
close STDOUT;
open STDOUT, '|-', 'gnuplot';
print << "EOF";
set terminal postscript;
set output "graf2.ps";
plot [-3.14:3.14] sin(x), sin(x) with impulses;
EOF
close STDOUT; nebo
open GP, '|-', 'gnuplot';
print GP << "EOF";
set terminal postscript;
set output "graf2.ps";
plot [-3.14:3.14] sin(x), sin(x) with impulses;
EOF
close GP; nebo
open GP, '|-', 'gnuplot';
select GP;
print << "EOF";
set terminal postscript;
set output "graf2.ps";
plot [-3.14:3.14] sin(x), sin(x) with impulses;
EOF
close;
select STDOUT; viz perldoc -f open a perldoc perlipc |
|
|
|
|
KOMENTARZE
|
Tylko zarejestrowani użytkownicy mogą dopisywać komentarze.
|
|
Szukanie oprogramowania
|
©Pavel Kysilka - 2003-2024 |
maillinuxsoft.cz | Design:
www.megadesign.cz
|