Looking for a way to publish multiple matlab plots into a single HTML file via plotly offline for matlab?
Any thoughts here?
That is completely possible! Do you have any examples you can share to better help you?
Effectively I am trying to generate multiple plots in Matlab and have them posted to a single html file via plotly offline:
here is a simple example of the intent:
for i =1:10
x=1:10;
y=1:2:20;
f(i)=figure(i)
plot(x,y);
%fig2plotly(gcf,‘offline’,‘true’) %this creates single files
end
fig2plotly(f(:),‘offline’,‘true’,‘filename’,‘nonsenseExample’)