Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
Uebung6
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Package registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Control and Cyber-Physical Systems (Public)
Programmierung in der Automatisierungstechnik
Uebung6
Commits
12edd433
Commit
12edd433
authored
Jan 22, 2024
by
elenziat
Browse files
Options
Downloads
Patches
Plain Diff
cosmetic edits (include standard headers using <>)
parent
3d477d33
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/outliers.h
+1
-1
1 addition, 1 deletion
src/outliers.h
src/statistics.cpp
+2
-4
2 additions, 4 deletions
src/statistics.cpp
src/statistics.h
+1
-1
1 addition, 1 deletion
src/statistics.h
with
4 additions
and
6 deletions
src/outliers.h
+
1
−
1
View file @
12edd433
...
...
@@ -5,8 +5,8 @@
#ifndef UEBUNG5_OUTLIERS_H
#define UEBUNG5_OUTLIERS_H
#include
<cstddef>
#include
<vector>
#include
"cstddef"
double
findNMin
(
const
std
::
vector
<
double
>&
data
,
size_t
n
);
double
findNMax
(
const
std
::
vector
<
double
>&
data
,
size_t
n
);
...
...
This diff is collapsed.
Click to expand it.
src/statistics.cpp
+
2
−
4
View file @
12edd433
#include
"statistics.h"
#include
"cstddef"
#include
<algorithm>
#include
<numeric>
size_t
countValuesNearMean
(
const
std
::
vector
<
double
>&
data
)
{
return
0
;
}
size_t
countValuesNearMean
(
const
std
::
vector
<
double
>&
data
)
{
return
0
;
}
This diff is collapsed.
Click to expand it.
src/statistics.h
+
1
−
1
View file @
12edd433
#ifndef STATISTICS_H
#define STATISTICS_H
#include
<cstddef>
#include
<vector>
#include
"cstddef"
size_t
countValuesNearMean
(
const
std
::
vector
<
double
>&
data
);
...
...
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