|
Last change
on this file since 12194 was 8420, checked in by Mathieu Morlighem, 15 years ago |
|
Added 2 options and plot none really plots nothing
|
|
File size:
471 bytes
|
| Line | |
|---|
| 1 | function plot_none(md,options,nlines,ncols,i);
|
|---|
| 2 | %PLOT_NONE - plot nothing, just apply options
|
|---|
| 3 | %
|
|---|
| 4 | % Usage:
|
|---|
| 5 | % plot_mesh(md,options,nlines,ncols,i);
|
|---|
| 6 | %
|
|---|
| 7 | % See also: PLOTMODEL
|
|---|
| 8 | return;
|
|---|
| 9 |
|
|---|
| 10 | options=addfielddefault(options,'colorbar','none');
|
|---|
| 11 | options=addfielddefault(options,'map','none');
|
|---|
| 12 | options=addfielddefault(options,'axis','equal');
|
|---|
| 13 |
|
|---|
| 14 | if exist(options,'overlay'),
|
|---|
| 15 | plot_overlay(md,'none',options,nlines,ncols,i);
|
|---|
| 16 | return;
|
|---|
| 17 | end
|
|---|
| 18 |
|
|---|
| 19 | %apply options
|
|---|
| 20 | applyoptions(md,[],options);
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.