How to export 3d surface plot figure(matlab figure) to xhtml?

조회 수: 16 (최근 30일)
ALEXANDAR
ALEXANDAR 2014년 8월 8일
편집: ALEXANDAR 2014년 8월 8일
Below which I have attached my matlab code. I need the result plot/figure to incorporate into my website as an interactive plot/fig. could matlab figure be converted into xhtml?
I=imread('filename.extn');
[x,y]=size(I);
X=1:x;
Y=1:y;
[xx,yy]=meshgrid(Y,X);
i=im2double(I);
figure;mesh(xx,yy,i);
colorbar

답변 (2개)

ALEXANDAR
ALEXANDAR 2014년 8월 8일
편집: ALEXANDAR 2014년 8월 8일
Thanks for the quick response. The 2d graphs work well but 3d interactive images are not converted by polt.ly. The generated link load the plot for several hours, no graph appears. Any further suggestions.

Ahmet Cecen
Ahmet Cecen 2014년 8월 8일
Check out plot.ly, very nice interactive plotting tool for MATLAB.
https://plot.ly/matlab/

카테고리

Help CenterFile Exchange에서 Graphics Performance에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by