Octave: List of Functions for the ‘signal’ package
Octave function reference: sinetone
sinetone (freq, rate, sec, ampl)
Return a sinetone of frequency freq with a length of sec seconds at sampling rate rate and with amplitude ampl. The arguments freq and ampl may be vectors of common size. The defaults are rate = 8000, sec = 1, and ampl = 64. See also: sinewave.
Source: Function Reference: sinetone
Octave function reference: butter filter
sf = 800; sf2 = sf/2; data=[[1;zeros(sf-1,1)],sinetone(25,sf,1,1),sinetone(50,sf,1,1),sinetone(100,sf,1,1)]; [b,a]=butter ( 1, 50 / sf2 ); filtered = filter(b,a,data); clf subplot ( columns ( filtered ), 1, 1) plot(filtered(:,1),";Impulse response;") subplot ( columns ( filtered ), 1, 2 ) plot(filtered(:,2),";25Hz response;") subplot ( columns ( filtered ), 1, 3 ) plot(filtered(:,3),";50Hz response;") subplot ( columns ( filtered ), 1, 4 ) plot(filtered(:,4),";100Hz response;")
Source: Function Reference: butter
Tord Gustavsen
Reinventing the Wireless Plug With ESP8266: 8 Steps
Paolo dal Pozzo Toscanelli
Store ‘n’ Save 3.5” Enclosure Kit USB 2.0 | Verbatim Europe – Data Storage, Computer & Imaging Consumables | Verbatim Europe – Data Storage, Computer & Imaging Consumables
Can’t Read Superblock
Source: [SOLVED] Can’t Read Superblock
SymPy
SymPy is a Python library for symbolic computation. It provides computer algebra capabilities either as a standalone application, as a library to other applications, or live on the web as SymPy Live or SymPy Gamma. SymPy is simple to install and to inspect because it is written entirely in Python with few dependencies.[2][3][4] This ease of access combined with a simple and extensible code base in a well known language make SymPy a computer algebra system with a relatively low barrier to entry.
SymPy includes features ranging from basic symbolic arithmetic to calculus, algebra, discrete mathematics and quantum physics. It is capable of formatting the result of the computations as LaTeX code.[2][3]
SymPy is free software and is licensed under New BSD License. The lead developers are Ondřej Čertík and Aaron Meurer.
Source: SymPy – Wikipedia