File: layer_demo.m

package info (click to toggle)
octplot 0.4.0-7
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 3,072 kB
  • ctags: 1,563
  • sloc: cpp: 8,133; ansic: 5,053; sh: 617; makefile: 161
file content (63 lines) | stat: -rw-r--r-- 1,658 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
## Copyright (C) 2006 Shai Ayal
##
## This program is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2, or (at your option)
## any later version.
##
## OctPlot is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with OctPlot; see the file COPYING.  If not, write to the Free
## Software Foundation, 59 Temple Place - Suite 330, Boston, MA
## 02111-1307, USA.

## big axes
clf();
cla();
grid("on");

## small axes
axes();
set(gca(),"position",[0.68,0.6,0.2,0.2]);
set(gca(),"color",[0.9,0.9,0.9]);

## ticks are not very nice -- zap them
set(gca(),"xtick",[]);
set(gca(),"ytick",[]);

## make axes bars invisible
set(gca(),"xcolor","none");
set(gca(),"ycolor","none");

## put a nice histogram just to show off
hist(randn(10000,1),15);

## return to big axes
set(gcf(),"CurrentAxes",get(gcf(),"children")(2));

hl=plot(1:10,"r-",\
	10:-1:1,"b-");

hp=patch([4,7,7,4],[4,4,7,7],"c");

hh = get(gca(),"children");

set(hh,"linewidth",3);

title("Two lines behind the patch");
printf("\npress a key to continue\n");
pause();

set(gca(),"children",[hl,hp]);
title("Two lines in front of the patch");
printf("\npress a key to continue\n");
pause();

set(gca(),"children",[hl(1),hp,hl(2)]);
title("red line in front of the patch");
printf("\npress a key to continue\n");
pause();