How to create music sheets on matlab
Show older comments
I have a MIDI file.
I can read it and show it in a piano-roll format.
\\\
mma=readmidi(filename,1);
Minf = midiInfo(mma);
[PR,t,nn] = piano_roll(Minf,1);
imagesc(t,nn,PR);
\\\
I did'nt find how to show the MIDI in a music notes sheets format (normal music sheets). I tried to create in by myself (drowing lins and circles)but this way is verry difficalt.
Do matlab have a simple way to do this? Do you have any offers for me?
Answers (1)
Joseph Cheng
on 23 Feb 2015
0 votes
you might want to check out the stackoverflow submission http://stackoverflow.com/questions/19954393/sheet-music-using-matlab-gui you can possibly do something similar.
Categories
Find more on Audio and Video Data in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!