How to create music sheets on matlab

14 views (last 30 days)
Nadav Shalev
Nadav Shalev on 23 Feb 2015
Answered: Joseph Cheng on 23 Feb 2015
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 took the orders from MIDI
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
Joseph Cheng on 23 Feb 2015
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 Just for fun 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!