4d78e7c936be168db70c65276915688a131ef193,librosa/display.py,,__axis_chroma,#,489

Before Change



    n, ticker, labeler = __get_shape_artists(data, horiz)

    positions = np.arange(0, n, max(1, float(n) / bins_per_octave))

    // Labels start at 9 here because chroma starts at A.
    values = core.midi_to_note(np.arange(9, 9+12), octave=False)
    ticker(positions, values)

After Change



    //positions = np.linspace(0, n-1, num=n_ticks, endpoint=True).astype(int)
    // Generate the template positions
    pos = np.asarray([0, 2, 3, 5, 7, 8, 10]) * bins_per_octave // 12

    n_octaves = np.ceil(n / float(bins_per_octave))

    positions = pos.copy()
    for i in range(1, int(n_octaves)):
        positions = np.append(positions, pos + i * bins_per_octave, axis=0)

    // Labels start at 9 here because chroma starts at A.
    values = core.midi_to_note(positions * 12 // bins_per_octave + 9, octave=False)
//     values = core.midi_to_note(np.arange(9, 9+n), octave=False)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: librosa/librosa
Commit Name: 4d78e7c936be168db70c65276915688a131ef193
Time: 2015-02-17
Author: brian.mcfee@nyu.edu
File Name: librosa/display.py
Class Name:
Method Name: __axis_chroma


Project Name: neurodsp-tools/neurodsp
Commit Name: bfef95ab9f35e6d17a4114321a38b11fc1b7d908
Time: 2020-03-17
Author: tdonoghue@ucsd.edu
File Name: tutorials/rhythm/plot_LaggedCoherence.py
Class Name:
Method Name:


Project Name: hyperspy/hyperspy
Commit Name: 647c7910abda7a89eff45512769bca4889ff3bc9
Time: 2020-11-05
Author: nielscautaerts@hotmail.com
File Name: hyperspy/io_plugins/usid_hdf5.py
Class Name:
Method Name: _axes_list_to_dimensions