Hi All,
I am working on a project with mutliple channels and graphs that need to be processed. To do so I have use a for loop and can happily plot away.
I don't like subplot, since in this case I have 14 graphs and they need to be of a legible size.
I would like to publish them to a HTML file that I can save on a shared drive for people to view and review. In this case a 7x2 grid or a 14x1 grid layout would work well.
Now, I can do this by saving the figures and creating my own HTML page to put the graphs in, however I am sure this functionality is built in to matlab?
Any ideas?
Thanks in advance,
Q1 = 14;
for k = 1:1:Q1
pdata(k,:) = (pdata(k,:)/6894.757);
figure(k)
plot(pdata(k,:))
end