- /
-
Surf MATLAB
on 26 Oct 2021
- 39
- 98
- 4
- 0
- 208
figure('color','k')
text(0.,0.5,'MATLAB','FontSize',90,'Color','w')
axis off
I=frame2im(getframe(gcf));
I=flip(I);
I=rgb2gray(I) ;
Z = zeros(size(I));
Z(I~=0) = 1 ;
surf(Z)
shading interp
colormap(turbo)
view(-53,73)
axis off