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
8571cc4e
Commit
8571cc4e
authored
14 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
..
parent
acc96cfd
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
TODO
+4
-1
4 additions, 1 deletion
TODO
pub/src/expr.cpp
+7
-3
7 additions, 3 deletions
pub/src/expr.cpp
with
11 additions
and
4 deletions
TODO
+
4
−
1
View file @
8571cc4e
...
...
@@ -4,6 +4,9 @@
- frida.ini location via -D ?
- restore ask callback help for lists (prompt for list, not for string)
- restore help on "?"
- calc mode: do not exit on error
CHECK
- calc mode: do not exit on error
- wenn oio mehrere einzelne Spektren liefert, automatisch in einen File packen
- review definition of cauchy(,)
- plot range 1..1 +> gnuplot error
- curve: restricted fit range
- save session ? save inputs for replay !
This diff is collapsed.
Click to expand it.
pub/src/expr.cpp
+
7
−
3
View file @
8571cc4e
...
...
@@ -918,9 +918,13 @@ void NCalc::Calculator()
printf
(
"enter valid arithmetic expression, or q to quit
\n
"
);
continue
;
}
user_xaxparse
(
s
.
c_str
(),
&
T
);
T
->
tree_point_val
(
&
v
);
printf
(
"%.12g
\n
"
,
v
);
try
{
user_xaxparse
(
s
.
c_str
(),
&
T
);
T
->
tree_point_val
(
&
v
);
printf
(
"%.12g
\n
"
,
v
);
}
catch
(
string
&
s
)
{
cerr
<<
s
<<
endl
;
}
}
}
else
{
// evaluate one expression, with respect to given file selection
...
...
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