Skip to content

Instantly share code, notes, and snippets.

@kdpatino
Created April 9, 2020 23:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kdpatino/7cadbfcffb677e0ac50842349903fecd to your computer and use it in GitHub Desktop.
Save kdpatino/7cadbfcffb677e0ac50842349903fecd to your computer and use it in GitHub Desktop.
%%
clear;
clc;
fs = 16000;
t = 10;
A = importdata('test.dat');
X = A(1:end,1)/fs;
Y1 = A(1:end,2);
Y2 = A(1:end,3);
plot(X,Y1,X,Y2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment