This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewController.swift | |
// MontCoEMS | |
// | |
// Created by Mike Chirico on 12/4/15. | |
// Copyright © 2015 Mike Chirico. All rights reserved. | |
// | |
//http://webapp.montcopa.org/eoc/cadinfo/livecadrss.asp | |
import UIKit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import tensorflow as tf | |
import numpy as np | |
from numpy import genfromtxt | |
# Build Example Data is CSV format, but use Iris data | |
from sklearn import datasets | |
from sklearn.model_selection import train_test_split | |
import sklearn | |
def buildDataFromIris(): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
double Plus (double a, double b) { return a+b; } | |
double Mult (double a, double b) { return a*b; } | |
double Minus (double a, double b) { return a-b; } | |
double Div (double a, double b) { return a/b; } | |
void SF(double a, double b, double (*ptF)(double, double)) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (IBAction)buttonBack:(id)sender { | |
[[self presentingViewController] dismissModalViewControllerAnimated:YES]; | |
} | |