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
""" | |
Haar Mother Wavelet. | |
Example of Haar Mother Wavelet in python using np.piecewise interval definition. | |
""" | |
# Ref.: | |
# https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.piecewise.html | |
# https://sfalsharif.wordpress.com/2009/12/18/piecwise-function-definitions-in-numpy/ | |
import numpy as np | |
import matplotlib.pyplot as plt |
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 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 lxml import html | |
import requests | |
import numpy as np | |
import pandas as pd | |
import matplotlib.pyplot as plt | |
import time | |
from sklearn.cluster import KMeans | |
from sklearn import preprocessing | |
import seaborn as sns |
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
import numpy as np | |
import scipy | |
from scipy import signal | |
import matplotlib.pyplot as plt | |
freq1 = 60 # Hz | |
freq2 = 90 # Hz | |
sampling_rate = 1000 # samples per second | |
time = 1 # segundos |
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
import time | |
import random | |
import numpy as np | |
import multiprocessing as mp | |
class simulacron(object): | |
"""sync and async functs for simulacron.""" | |
def __init__(self, n=512*5, freq=512, freq2=4): | |
super(simulacron, self).__init__() |
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
\chapter*{Lista de Abreviaturas} | |
%\clearpage \thispagestyle{empty} % optional to clear page numbers | |
\begin{tabular}{ll} | |
2D & Estrutura Bidimensional.\\ | |
\\ | |
3D & Estrutura Tridimensional.\\ | |
\\ | |
B & Região de corpo (\emph{Body}).\\ | |
\\ |
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
\documentclass[11pt]{article} | |
\usepackage[utf8]{inputenc} | |
\usepackage{graphicx} | |
\usepackage{subfig} | |
\begin{document} | |
\begin{figure}[!ht] | |
\centering | |
\caption{Caption superior.} |
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 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
# Objetivo | |
Configurar o openvibe para compilar os drivers do emotiv epoc. | |
Obs.: todas estas etapas dependem da compra e instalação do Emotiv SDK Ubuntu. | |
## Referencias | |
http://openvibe.inria.fr/how-to-connect-emotiv-epoc-with-openvibe/ | |
https://github.com/tbronchain/openemo |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder