MATLAB: How to control cutepdf software from matlab

cutepdfdirectxmerge

My matlab script churns out a pdf file full of plots, it also controls excel to churn out another pdf file, I need the two to be merged using cutepdf software, but via Matlab, is this possible?
Thanks

Best Answer

I stick by my flag that this isn't a MATLAB question....
With pdftk you can merge pdf files with something like
pdftk 1.pdf 2.pdf 3.pdf cat output 123.pdf
from MATLAB you would simply wrap that in SYSTEM.