Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update wp_scalogram.py #769

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

Commits on Sep 17, 2024

  1. Update wp_scalogram.py

    In the second plot, updated Fs to 512;
    `ax2.specgram(data, NFFT=64, noverlap=32, Fs=512, cmap=cmap,
                 interpolation='bilinear')`
    
    again in the second plot, added aspect='auto', and did corrections to the time (x axis) and y axis (scale) with `extent=[0, 1, 1, values.shape[0]]`
    
    ax3.imshow(values, origin='lower', extent=[0, 1, 1, values.shape[0]], 
               interpolation='nearest', aspect='auto')
    omersayli committed Sep 17, 2024
    Configuration menu
    Copy the full SHA
    259e38a View commit details
    Browse the repository at this point in the history
  2. Update wp_scalogram.py

    ax3.imshow(values, origin='lower', extent=[0, 1, values.shape[0], 1], 
               interpolation='nearest', aspect='auto')
    omersayli committed Sep 17, 2024
    Configuration menu
    Copy the full SHA
    55363a6 View commit details
    Browse the repository at this point in the history
  3. Update wp_scalogram.py

    Figure 2-subplot 2 in this version is compatible with Figure 1-subplot 2 y-axis labels for the wavelet packet names
    omersayli committed Sep 17, 2024
    Configuration menu
    Copy the full SHA
    66d5920 View commit details
    Browse the repository at this point in the history