-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstats.h
103 lines (86 loc) · 3.41 KB
/
stats.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/******************************************************************************
* Copyright (C) 2017 by Alex Fosdick - University of Colorado
*
* Redistribution, modification or use of this software in source or binary
* forms is permitted as long as the files maintain this copyright. Users are
* permitted to modify this and use it to learn about the field of embedded
* software. Alex Fosdick and the University of Colorado are not liable for any
* misuse of this material.
*
*****************************************************************************/
/**
* @file <Add File Name>
* @brief <Add Brief Description Here >
*
* <Add Extended Description Here>
*
* @author <Add FirsName LastName>
* @date <Add date >
*
*/
#ifndef __STATS_H__
#define __STATS_H__
/* Add Your Declarations and Function Comments here */
/**
* @brief <Add Brief Description of Function Here>
*
* <Add Extended Description Here>
*
* @param <Add InputName> <add description here>
* @param <Add InputName> <add description here>
* @param <Add InputName> <add description here>
* @param <Add InputName> <add description here>
*
* @return <Add Return Informaiton here>
*/
/*-------------------Function Declarations of stats.c starts from here--------------*\
/*
* @brief : Prints the statistics of an array
* including minimum, maximum, mean and median
* @param : None
* @return : None
*/
void print_statistics(unsigned char * array, unsigned int size);
/*
* @brief : Prints the array given data and its length
* @param : <char * array> <the pointer variable pointing to the first data element of the array>
* @param : <char size> <the size of the array>
* @return : None
*/
void print_array(unsigned char * array, unsigned int size);
/*
* @brief : returns the median of the input array
* @param : <char * array> <the pointer variable pointing to the first data element of the array>
* @param : <char size> <the size of the input array>
* @return : <char median> <returns the median of the array data>
*/
unsigned char find_median(unsigned char * array, unsigned int size);
/*
* @brief : returns the mean of the input array
* @param : <char * array> <the pointer variable pointing to the first data element of the array>
* @param : <char size> <the size of the input array>
* @return : <char mean> <returns the mean of the array data>
*/
unsigned char find_mean(unsigned char * array, unsigned int size);
/*
* @brief : returns the maximum of the input array
* @param : <char * array> <the pointer variable pointing to the first data element of the array>
* @param : <char size> <the size of the input array>
* @return : <char maximum> <returns the maximum of the array data>
*/
unsigned char find_maximum(unsigned char * array, unsigned int size);
/*
* @brief : returns the minimum of the input array
* @param : <char * array> <the pointer variable pointing to the first data element of the array>
* @param : <char size> <the size of the input array>
* @return : <char median> <returns the median of the array data>
*/
unsigned char find_minimum(unsigned char * array, unsigned int size);
/*
* @brief : sorts the input array from largest to smallest
* @param : <char * array> <the pointer variable pointing to the first data element of the array>
* @param : <char size> <the size of the input array>
* @return : None
*/
void sort_array(unsigned char * array, unsigned int size);
#endif /* __STATS_H__ */