org-arl / SignalAnalysis.jl

Signal analysis toolbox for Julia
MIT License
41 stars 10 forks source link

fix(iplot): rescale time domain #21

Closed ymtoo closed 3 years ago

ymtoo commented 3 years ago

Plotting signals with variable length.

using SignalAnalysis
using InteractiveViz
using GLMakie

x1 = cw(1000, 0.5, 9600)
x2 = cw(1000, 0.1, 9600)
iplot(x1); iplot!(x2; color=:red) 

Before: Screenshot from 2021-05-06 18-30-20 After: Screenshot from 2021-05-06 18-22-11