What is difference mesh, surf, comet instructions?

 Accepted Answer

data = rand(30,50);
mesh(data)
title('mesh -- edges only')
surf(data)
title('surf -- faces too')
comet(data(1,:))
title('comet')
comet is only a line, but it is an animated line.

More Answers (0)

Categories

Tags

Community Treasure Hunt

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

Start Hunting!