How to plot graphs from for loop to HTML grid

조회 수: 2 (최근 30일)
John Doe
John Doe 2019년 2월 5일
댓글: Guillaume 2019년 2월 12일
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
  댓글 수: 2
John Doe
John Doe 2019년 2월 6일
편집: John Doe 2019년 2월 6일
Edit:
This works and gives me moreorless the output I want. However I don't want to include the code it's unnecessary for the intented viewership and I do want to include tables that have been created by the process as well.
Could you confirm if this is possible?
Guillaume
Guillaume 2019년 2월 12일
@Matyas, your initial comment should really have been an answer. I suggest you repost it as an answe so it can be accepted and give the question some closure.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Discrete Data Plots에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by