Code covered by the BSD License  

Highlights from
Toolbox Wavelets on Meshes

from Toolbox Wavelets on Meshes by Gabriel Peyre
A toolbox to compute wavelet transform on 3D meshes

test_sphere.m
% test for spherical data processing

j = 5;
options.keep_subdivision = 0;
options.base_mesh = 'ico';
options.relaxation = 0;
[vertex,face] = compute_semiregular_sphere(j,options);

options.relaxation = 4;
[vertex1,face] = compute_semiregular_sphere(j,options);


clf;
subplot(1,2,1);
plot_mesh(vertex,face);
shading faceted;
subplot(1,2,2);
plot_mesh(vertex1,face);
shading faceted;

Contact us at files@mathworks.com