Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TurTLE
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TurTLE
TurTLE
Commits
805bfda2
Commit
805bfda2
authored
6 years ago
by
Cristian Lalescu
Browse files
Options
Downloads
Patches
Plain Diff
compute spectra for joint acc vel stats as well
parent
d9a4bea9
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#51428
passed
6 years ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cpp/full_code/joint_acc_vel_stats.cpp
+14
-11
14 additions, 11 deletions
cpp/full_code/joint_acc_vel_stats.cpp
with
14 additions
and
11 deletions
cpp/full_code/joint_acc_vel_stats.cpp
+
14
−
11
View file @
805bfda2
...
...
@@ -154,17 +154,6 @@ int joint_acc_vel_stats<rnumber>::work_on_current_iteration(void)
max_acc_estimate
[
3
]
=
max_acceleration_estimate
;
max_vel_estimate
[
3
]
=
max_velocity_estimate
;
acc
->
compute_rspace_stats
(
stat_group
,
"acceleration"
,
this
->
iteration
/
this
->
niter_out
,
max_acc_estimate
);
vel
->
compute_rspace_stats
(
stat_group
,
"velocity"
,
this
->
iteration
/
this
->
niter_out
,
max_vel_estimate
);
/// compute joint PDF
joint_rspace_PDF
(
acc
,
vel
,
...
...
@@ -174,6 +163,20 @@ int joint_acc_vel_stats<rnumber>::work_on_current_iteration(void)
max_acc_estimate
,
max_vel_estimate
);
/// compute real space stats and spectra
acc
->
compute_stats
(
kk
,
stat_group
,
"acceleration"
,
this
->
iteration
/
this
->
niter_out
,
max_acceleration_estimate
/
sqrt
(
3
));
vel
->
compute_stats
(
kk
,
stat_group
,
"velocity"
,
this
->
iteration
/
this
->
niter_out
,
max_velocity_estimate
/
sqrt
(
3
));
delete
vel
;
return
EXIT_SUCCESS
;
...
...
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