Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
s = char(65:80) ; | |
for subj= 1:9 | |
sheet= strcat('BL0',num2str(subj)); | |
for ns = 1:length(s) | |
range = [s(ns),'2',':',s(ns),'20000']; | |
dat= xlsread('GSR_buttsmoothmed.xlsx',sheet, range); | |
This file contains hidden or 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
# -*- coding: utf-8 -*- | |
# Form implementation generated from reading ui file '.\Form.ui' | |
# | |
# Created: Fri Mar 20 15:17:05 2015 | |
# by: PyQt4 UI code generator 4.11.3 | |
# | |
# WARNING! All changes made in this file will be lost! | |
from PyQt4 import QtCore, QtGui |
This file contains hidden or 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
import gui_main | |
import sys | |
import numpy | |
from PyQt4 import QtCore, QtGui | |
import PyQt4.Qwt5 as Qwt | |
import matplotlib | |
import serial | |
import threading | |
This file contains hidden or 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
import processing.serial.*; | |
Serial myPort; | |
int count = 1; | |
float roll1,pitch1,yaw1; | |
float [] roll_1= new float[999999]; | |
float [] pitch_1= new float[999999]; | |
float [] yaw_1= new float[999999]; | |
This file contains hidden or 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
import processing.serial.*; | |
Serial myPort; | |
float roll, pitch, yaw; | |
void setup(){ | |
size(600,600,P3D); | |
myPort= new Serial(this, Serial.list()[0], 115200); | |
smooth(); | |
frameRate(30); |
This file contains hidden or 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
java.lang.RuntimeException: java.lang.NullPointerException | |
at com.jogamp.common.util.awt.AWTEDTExecutor.invoke(AWTEDTExecutor.java:58) | |
at jogamp.opengl.awt.AWTThreadingPlugin.invokeOnOpenGLThread(AWTThreadingPlugin.java:103) | |
at jogamp.opengl.ThreadingImpl.invokeOnOpenGLThread(ThreadingImpl.java:206) | |
at javax.media.opengl.Threading.invokeOnOpenGLThread(Threading.java:172) | |
at javax.media.opengl.Threading.invoke(Threading.java:191) | |
at javax.media.opengl.awt.GLCanvas.display(GLCanvas.java:541) | |
at processing.opengl.PJOGL.requestDraw(PJOGL.java:688) | |
at processing.opengl.PGraphicsOpenGL.requestDraw(PGraphicsOpenGL.java:1651) | |
at processing.core.PApplet.run(PApplet.java:2256) |
This file contains hidden or 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
from SimpleCV import * | |
from tesseract import * | |
import datetime | |
import json | |
import re | |
import os, time | |
This file contains hidden or 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
from SimpleCV import * | |
from tesseract import * | |
import datetime | |
import json | |
import re | |
import os, time | |
# path= "/home/shruthi/Desktop/cxa/images/" |
This file contains hidden or 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
O1= <random array> | |
date= <random array> | |
for i in xrange(0, len(O1)): | |
list= [{"date": date[i], "O1": O1[i]}] | |
return jsonify(results=list) |
NewerOlder