Compare commits
32 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
b9e7bb6b7d | ||
![]() |
aaa653afcd | ||
![]() |
147fc10bd8 | ||
![]() |
bf76b4a911 | ||
![]() |
1685ecc1e9 | ||
![]() |
c33919a3c6 | ||
![]() |
ecd4980ba2 | ||
![]() |
e9bd5bcdd0 | ||
![]() |
156f8de5c0 | ||
![]() |
597fc22124 | ||
![]() |
3675ee066f | ||
![]() |
f7a0384ff3 | ||
![]() |
19f9c3c333 | ||
![]() |
eebc90e392 | ||
![]() |
5acd4908ab | ||
![]() |
f022fda0d6 | ||
![]() |
6d6ef03710 | ||
![]() |
b5d0d55290 | ||
![]() |
81548b20e6 | ||
![]() |
ede6827cb6 | ||
![]() |
015da8fd34 | ||
![]() |
326038107c | ||
![]() |
a1b8f22383 | ||
![]() |
fb4d81fe67 | ||
![]() |
497c7d0bea | ||
![]() |
b5db1fbdc2 | ||
![]() |
1adc60c991 | ||
![]() |
4980d8b57c | ||
![]() |
8d048e9a68 | ||
![]() |
f9a739f556 | ||
![]() |
3b24d422d2 | ||
![]() |
e8b1d79f79 |
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# Ignore CMake files:
|
||||||
|
CMakeCache.txt
|
||||||
|
CMakeFiles/
|
||||||
|
cmake_install.cmake
|
||||||
|
Makefile
|
||||||
|
|
||||||
|
# Ignore build files:
|
||||||
|
build/
|
13
.travis.yml
Normal file
13
.travis.yml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Define the language
|
||||||
|
language: c
|
||||||
|
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
packages:
|
||||||
|
- build-essential
|
||||||
|
- cmake
|
||||||
|
|
||||||
|
script:
|
||||||
|
- cd build/
|
||||||
|
- cmake -DCMAKE_BUILD_TYPE=Release ..
|
||||||
|
- make
|
17
CMakeLists.txt
Normal file
17
CMakeLists.txt
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
cmake_minimum_required(VERSION 2.6)
|
||||||
|
project(MMMCalc)
|
||||||
|
|
||||||
|
if(CMAKE_BUILD_TYPE STREQUAL "")
|
||||||
|
set(CMAKE_BUILD_TYPE RelWithDebInfo)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_C_FLAGS "-std=gnu99 -Wall -Wextra -Werror -Wfatal-errors -Wmissing-declarations -pedantic-errors")
|
||||||
|
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS} -g -O0")
|
||||||
|
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS} -O3")
|
||||||
|
set(CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS} -g -O3")
|
||||||
|
set(CMAKE_C_FLAGS_MIN_SIZEREL "${CMAKE_C_FLAGS} -Os")
|
||||||
|
|
||||||
|
set(SRCS
|
||||||
|
src/main.c)
|
||||||
|
|
||||||
|
add_executable(mmmcalc ${SRCS})
|
19
README.md
19
README.md
@ -1,12 +1,21 @@
|
|||||||
MMMCalc
|
MMMCalc
|
||||||
=======
|
=======
|
||||||
|
[](https://travis-ci.org/Deathsbreed/MMMCalc)
|
||||||
|
|
||||||
This is a very simple project, it was made for educational purposes (hence why it is open-source), and I encourage everyone to contribute if they have something to add.
|
MMMCalc is a program I made after school one day after having to learn about Mean, Median, and Mode for the thousandth time. So instead of doing my actual homework I decided to make this program which would do it for me. Of course, the program with this is that your teachers often ask you to show your work. Well, fear not! For MMMCalc shows you **its** work. After it does its calculations, if you turn on _verbose mode_ (by using the `-v` argument) it will show you how MMMCalc got to that answer that it's giving you. After going through Mean, Median, and Mode (the reason why this program is called **MMM**Calc) I decided to add a few other basic statistical properties to it.
|
||||||
|
|
||||||
The most simple way to build this project is to move to the src folder/directory and run
|
I hope this helps someone to make their millionth time of doing Mean, Median, and Mode in school a little less of a pain in the ass.
|
||||||
|
|
||||||
$ javac MMMCalc.java
|
### Compiling
|
||||||
|
MMMCalc uses [CMake](http://cmake.org/) to compile. Please install the C development tools and CMake (along with whichever build script you plan on having CMake generate) in order to run this command.
|
||||||
|
```bash
|
||||||
|
$ cd build/
|
||||||
|
$ cmake ..
|
||||||
|
$ make
|
||||||
|
```
|
||||||
|
|
||||||
This will allow you to build the project that should work properly if you are downloading one of the releases (if you download the straight from the master branch it might have some problems).
|
### Contributing
|
||||||
|
To contribute, simply open a pull request, however, be aware that this code is licensed under a GNU GPLv3 and so will yours.
|
||||||
|
|
||||||
To contact me, send me an e-mail at <nicolas.ortega.froysa@gmail.com>.
|
### License
|
||||||
|
All code in this repository is under the [GNU GPLv3](/LICENSE).
|
||||||
|
0
build/.keep
Normal file
0
build/.keep
Normal file
128
src/main.c
Normal file
128
src/main.c
Normal file
@ -0,0 +1,128 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <ctype.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <getopt.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
// Version string
|
||||||
|
const char *version = "v0.5";
|
||||||
|
// Whether or not the calculations should be verbose
|
||||||
|
bool verboseFlag = false;
|
||||||
|
|
||||||
|
// Function that prints help info
|
||||||
|
inline void printHelp();
|
||||||
|
|
||||||
|
int main(int argc, char **argv) {
|
||||||
|
// There should always be at least be 2 arguments and no more than 4
|
||||||
|
if(argc <= 1) {
|
||||||
|
fprintf(stderr, "No arguments were provided. Use `-h' for help.\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Variable where the argument is stored
|
||||||
|
int arg;
|
||||||
|
// If help info should be printed
|
||||||
|
bool helpFlag = false;
|
||||||
|
// If version info should be printed
|
||||||
|
bool versionFlag = false;
|
||||||
|
// The file to read the numbers from
|
||||||
|
char *infile = NULL;
|
||||||
|
|
||||||
|
while((arg = getopt(argc, argv, "hvVf:")) != -1) {
|
||||||
|
switch(arg) {
|
||||||
|
case 'h':
|
||||||
|
// Only 2 arguments can be used
|
||||||
|
if(argc != 2) {
|
||||||
|
fprintf(stderr, "Invalid use of arguments. Use `-h' for help.\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
helpFlag = true;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'v':
|
||||||
|
verboseFlag = true;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'V':
|
||||||
|
// Only 2 arguments can be used
|
||||||
|
if(argc != 2) {
|
||||||
|
fprintf(stderr, "Invalid use of arguments. Use `-h' for help.\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
versionFlag = true;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'f':
|
||||||
|
// There needs to be between 3 and 4 arguments
|
||||||
|
if(argc > 4 || argc < 3) {
|
||||||
|
fprintf(stderr, "Invalid use of arguments. Use `-h' for help.\n");
|
||||||
|
}
|
||||||
|
// Set the input file
|
||||||
|
infile = optarg;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case '?':
|
||||||
|
if(optopt == 'f') {
|
||||||
|
fprintf(stderr, "Option -%c requires an argument.\n", optopt);
|
||||||
|
} else if(isprint(optopt)) {
|
||||||
|
fprintf(stderr, "Unknown option `-%c'.\n", optopt);
|
||||||
|
} else {
|
||||||
|
fprintf(stderr, "Unknown character `\\x%x'.\n", optopt);
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
default:
|
||||||
|
// If we get anything else that's weird just abort
|
||||||
|
abort();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(helpFlag) {
|
||||||
|
printHelp();
|
||||||
|
return 0;
|
||||||
|
} else if(versionFlag) {
|
||||||
|
printf("%s\n", version);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Print copyright & license information
|
||||||
|
printf("MMMCalc %s, Copyright (c) 2016 Nicolás A. Ortega.\n", version);
|
||||||
|
printf("This program comes with ABSOLUTELY NO WARRANTY.\n");
|
||||||
|
printf("This program is free software and you are welcome to redistribute\n");
|
||||||
|
printf("under the terms and conditions of the GNU GPLv3 or higher.\n\n");
|
||||||
|
|
||||||
|
// Open a file as read only
|
||||||
|
FILE *numfile = fopen(infile, "r");
|
||||||
|
// Temporary variable to see how many numbers are in this file
|
||||||
|
double num;
|
||||||
|
// The size of the coming nums array
|
||||||
|
int size = 0;
|
||||||
|
// Get the size for the array
|
||||||
|
while(fscanf(numfile, "%lf", &num) == 1) size++;
|
||||||
|
rewind(numfile);
|
||||||
|
printf("There are %d numbers in the file.\n", size);
|
||||||
|
// Create the array with that size
|
||||||
|
double nums[size];
|
||||||
|
for(int i = 0; i < size; i++) {
|
||||||
|
// Store result of fscanf in err
|
||||||
|
int err = fscanf(numfile, "%lf", &nums[i]);
|
||||||
|
// If fscanf returned error exit out of here
|
||||||
|
if(err != 1) {
|
||||||
|
fprintf(stderr, "Error reading entire file.\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
// If not let's continue printing
|
||||||
|
printf("%f\n", nums[i]);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void printHelp() {
|
||||||
|
printf("Usage: mmmcalc [options]\n");
|
||||||
|
printf("Options:\n");
|
||||||
|
printf(" -f <file> -- The file to read variables from.\n");
|
||||||
|
printf(" -h -- Show this help information.\n");
|
||||||
|
printf(" -v -- Be verbose, prints the equations used.\n");
|
||||||
|
printf(" -V -- Print the version number.\n");
|
||||||
|
}
|
@ -1,2 +0,0 @@
|
|||||||
Manifest-Version: 0.2
|
|
||||||
Main-Class: MMMCalc
|
|
@ -1,3 +1,5 @@
|
|||||||
|
package mmmcalc;
|
||||||
|
|
||||||
import java.lang.Math;
|
import java.lang.Math;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
@ -6,7 +8,7 @@ import java.util.Map;
|
|||||||
/**
|
/**
|
||||||
* @author Nicolás A. Ortega
|
* @author Nicolás A. Ortega
|
||||||
* @copyright (C) Nicolás A. Ortega
|
* @copyright (C) Nicolás A. Ortega
|
||||||
* @license GNU General Public License 3.0 (GPLv3)
|
* @license GNU GPLv3
|
||||||
* @year 2014
|
* @year 2014
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -23,7 +25,7 @@ public class MMMCalc {
|
|||||||
private static float variance = 0;
|
private static float variance = 0;
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
System.out.println("MMMCalc v0.2, Copyright (C) 2014 Nicolás A. Ortega\n" +
|
System.out.println("MMMCalc v0.4, Copyright (C) 2014 Nicolás A. Ortega\n" +
|
||||||
"This program comes with ABSOLUTELY NO WARRANTY; for details use '-w'\n" +
|
"This program comes with ABSOLUTELY NO WARRANTY; for details use '-w'\n" +
|
||||||
"This is free software, and you are welcome to redistribute it\n" +
|
"This is free software, and you are welcome to redistribute it\n" +
|
||||||
"under certain conditions; use '-c' for details.\n");
|
"under certain conditions; use '-c' for details.\n");
|
||||||
@ -92,7 +94,7 @@ public class MMMCalc {
|
|||||||
calcStdDev();
|
calcStdDev();
|
||||||
calcVariance();
|
calcVariance();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
System.out.println("You did not mention any variables. Use the -h argument for help.");
|
System.out.println("You did not mention any variables. Use the -h argument for help.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -135,30 +137,58 @@ public class MMMCalc {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static void calcQ1() {
|
private static void calcQ1() {
|
||||||
int q1Pos = numArray.length / 4;
|
int q1Pos;
|
||||||
boolean exact;
|
// c stands for case... Cases correspond to their order in the following if statements (4 different cases).
|
||||||
|
int c;
|
||||||
|
|
||||||
if(numArray.length % 4 == 0) {
|
if(numArray.length % 2.0 == 0) {
|
||||||
q1 = (numArray[q1Pos] + numArray[q1Pos-1]) / 2;
|
q1Pos = (int)(numArray.length / 4);
|
||||||
exact = false;
|
if(numArray.length % 4.0 == 0) {
|
||||||
|
q1 = (numArray[q1Pos] + numArray[q1Pos-1]) / 2;
|
||||||
|
c = 1;
|
||||||
|
} else {
|
||||||
|
q1 = numArray[q1Pos];
|
||||||
|
c = 2;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
q1 = numArray[q1Pos];
|
if(Math.ceil(numArray.length / 2.0) % 2.0 == 0) {
|
||||||
exact = true;
|
q1Pos = (int)(Math.ceil(numArray.length / 2.0) / 2.0);
|
||||||
|
q1 = (numArray[q1Pos] + numArray[q1Pos+1]) / 2;
|
||||||
|
c = 3;
|
||||||
|
} else {
|
||||||
|
q1Pos = (int)Math.ceil(numArray.length / 4.0);
|
||||||
|
q1 = numArray[q1Pos];
|
||||||
|
c = 4;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
System.out.println("Q1: " + q1);
|
System.out.println("Q1: " + q1);
|
||||||
|
|
||||||
if(verbose) {
|
if(verbose) {
|
||||||
for(int i = 0; i < numArray.length; i++) {
|
for(int i = 0; i < numArray.length; i++) {
|
||||||
if(!exact) {
|
if(c == 1) {
|
||||||
if(i == q1Pos - 1) {
|
if(i == q1Pos - 1) {
|
||||||
System.out.print(">>" + numArray[i] + " !" + q1 + "! ");
|
System.out.print(">>" + numArray[i] + " !" + q1 + "! ");
|
||||||
} else if( i == q1Pos) {
|
} else if(i == q1Pos) {
|
||||||
System.out.print(numArray[i] + "<< ");
|
System.out.print(numArray[i] + "<< ");
|
||||||
} else {
|
} else {
|
||||||
System.out.print(numArray[i] + " ");
|
System.out.print(numArray[i] + " ");
|
||||||
}
|
}
|
||||||
} else {
|
} else if(c == 2) {
|
||||||
|
if(i == q1Pos) {
|
||||||
|
System.out.print(">>" + numArray[i] + "<< ");
|
||||||
|
} else {
|
||||||
|
System.out.print(numArray[i] + " ");
|
||||||
|
}
|
||||||
|
} else if(c == 3) {
|
||||||
|
if(i == q1Pos) {
|
||||||
|
System.out.print(">>" + numArray[i] + " !" + q1 + "! ");
|
||||||
|
} else if(i == q1Pos + 1) {
|
||||||
|
System.out.print(numArray[i] + "<< ");
|
||||||
|
} else {
|
||||||
|
System.out.print(numArray[i] + " ");
|
||||||
|
}
|
||||||
|
} else if(c == 4) {
|
||||||
if(i == q1Pos) {
|
if(i == q1Pos) {
|
||||||
System.out.print(">>" + numArray[i] + "<< ");
|
System.out.print(">>" + numArray[i] + "<< ");
|
||||||
} else {
|
} else {
|
||||||
@ -206,12 +236,13 @@ public class MMMCalc {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// FIXME: Needs to calculate haflway between the median value and the last value.
|
||||||
private static void calcQ3() {
|
private static void calcQ3() {
|
||||||
int q3Pos = (numArray.length * 3) / 4;
|
/*int q3Pos = (numArray.length * 3) / 4;
|
||||||
boolean exact;
|
boolean exact;
|
||||||
|
|
||||||
if((numArray.length * 3) % 4 == 0) {
|
if((numArray.length * 3) % 4 != 0) {
|
||||||
q3 = (numArray[q3Pos] + numArray[q3Pos-1]) / 2;
|
q3 = (numArray[q3Pos+1] + numArray[q3Pos]) / 2;
|
||||||
exact = false;
|
exact = false;
|
||||||
} else {
|
} else {
|
||||||
q3 = numArray[q3Pos];
|
q3 = numArray[q3Pos];
|
||||||
@ -223,9 +254,9 @@ public class MMMCalc {
|
|||||||
if(verbose) {
|
if(verbose) {
|
||||||
for(int i = 0; i < numArray.length; i++) {
|
for(int i = 0; i < numArray.length; i++) {
|
||||||
if(!exact) {
|
if(!exact) {
|
||||||
if(i == q3Pos - 1) {
|
if(i == q3Pos) {
|
||||||
System.out.print(">>" + numArray[i] + " !" + q3 + "! ");
|
System.out.print(">>" + numArray[i] + " !" + q3 + "! ");
|
||||||
} else if(i == q3Pos) {
|
} else if(i == q3Pos + 1) {
|
||||||
System.out.print(numArray[i] + "<< ");
|
System.out.print(numArray[i] + "<< ");
|
||||||
} else {
|
} else {
|
||||||
System.out.print(numArray[i] + " ");
|
System.out.print(numArray[i] + " ");
|
||||||
@ -239,7 +270,8 @@ public class MMMCalc {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
System.out.print("\n\n");
|
System.out.print("\n\n");
|
||||||
}
|
}*/
|
||||||
|
System.out.println("Q3 is not currently functional.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void calcMode() {
|
private static void calcMode() {
|
||||||
@ -308,7 +340,6 @@ public class MMMCalc {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static void calcVariance() {
|
private static void calcVariance() {
|
||||||
// NOTE: I'm doing it this way so I don't have to convert the variables to doubles and lose precision.
|
|
||||||
variance = stdDev * stdDev;
|
variance = stdDev * stdDev;
|
||||||
|
|
||||||
System.out.println("Variance: " + variance);
|
System.out.println("Variance: " + variance);
|
Loading…
x
Reference in New Issue
Block a user