comparison +parametrization/old/plot_shape.m @ 427:a613960a157b feature/quantumTriangles

merged with feature/beams
author Ylva Rydin <ylva.rydin@telia.com>
date Thu, 26 Jan 2017 15:59:25 +0100
parents 81e0ead29431
children
comparison
equal deleted inserted replaced
426:29944ea7674b 427:a613960a157b
1 % Plot a shape using n points. Returns cell array of plot handles.
2 % hs = plot_shape(s,n)
3 function hs = plot_shape(s,n)
4 default_arg('n',100);
5
6 hs = {};
7 hold on
8 for i = 1:length(s)
9 hs{end+1} = parametrization.plot_curve(s{i},n);
10 end
11 hold off
12 end