Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Frida
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
Frida
Commits
2446b8d5
Commit
2446b8d5
authored
13 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
corr helptxt
parent
e889e029
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pub/src/curve.cpp
+6
-8
6 additions, 8 deletions
pub/src/curve.cpp
with
6 additions
and
8 deletions
pub/src/curve.cpp
+
6
−
8
View file @
2446b8d5
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment