Skip to content
Snippets Groups Projects
Commit 2446b8d5 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

corr helptxt

parent e889e029
Branches
Tags
No related merge requests found
...@@ -102,8 +102,8 @@ ask_again: ...@@ -102,8 +102,8 @@ ask_again:
string resp = sask( quest+" (or c,ci; h for help) ?" ); string resp = sask( quest+" (or c,ci; h for help) ?" );
if ( resp=="h" ) { if ( resp=="h" ) {
cout << cout <<
"curve definition:\n" "curve definition:\n"
"- either an arithmetic expression,\n" "- either an arithmetic expression,\n"
" containing the running variable t,\n" " containing the running variable t,\n"
" for instance: p0+p1*t\n" " for instance: p0+p1*t\n"
"- or one of the following keywords:\n" "- or one of the following keywords:\n"
...@@ -118,10 +118,9 @@ ask_again: ...@@ -118,10 +118,9 @@ ask_again:
" - M*double: the parameters\n" " - M*double: the parameters\n"
" - 1*int: the number of data points N\n" " - 1*int: the number of data points N\n"
" - N*double: the data points\n" " - N*double: the data points\n"
"- write to stdout a whitespace separated list of:\n" "- write to stdout:\n"
" - N*double: N lines with curve values y\n" " - N*double: N lines with curve values y\n"
// " - N*double: the curve values\n" "- write error messages to stderr\n";
"- write to error messages to stderr\n";
goto ask_again; goto ask_again;
} else if ( resp=="hci" ) { } else if ( resp=="hci" ) {
cout << cout <<
...@@ -129,10 +128,9 @@ ask_again: ...@@ -129,10 +128,9 @@ ask_again:
"- read from stdin a whitespace separated list of:\n" "- read from stdin a whitespace separated list of:\n"
" - 1*int: the number of parameters M\n" " - 1*int: the number of parameters M\n"
" - M*double: the parameters\n" " - M*double: the parameters\n"
"- write to stdout a whitespace separated list of:\n" "- write to stdout:\n"
" - N*2*double: N lines with pairs x y\n" " - N*2*double: N lines with pairs x y\n"
// " - N*2*double: a sequence of data pairs: x0 y0 x1 y1 x2 y2 ...\n" "- write error messages to stderr\n";
"- write to error messages to stderr\n";
goto ask_again; goto ask_again;
} else if ( resp=="c" ) { } else if ( resp=="c" ) {
evaMode = COlc::_SCR; evaMode = COlc::_SCR;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment