Mercurial > repos > public > sbplib
annotate +parametrization/old/plot_shape.m @ 1171:393ed30866a1 feature/rv
Actually return coarse grid operators from constructDiffOpsMultiGrid
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Fri, 28 Jun 2019 13:18:58 +0200 |
parents | 81e0ead29431 |
children |
rev | line source |
---|---|
0 | 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) | |
248
81e0ead29431
Fixed package names in +parametrization
Jonatan Werpers <jonatan@werpers.com>
parents:
151
diff
changeset
|
9 hs{end+1} = parametrization.plot_curve(s{i},n); |
0 | 10 end |
11 hold off | |
12 end |