File: hotcolormap.sci

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (14 lines) | stat: -rw-r--r-- 357 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
function cmap = hotcolormap(n)
//graycmap   yellow to red color map.
// Copyright INRIA
if size(n,'*')<>1|or(n<3) then
  error('hotcolormap : n must be an integer greater than 3')
end
n1=fix(3/8*n);
n2=n1
n3=n-(n1+n2)
//
cmap=[(1:n1)'/n1  zeros(n1,1)  zeros(n1,1);
      ones(n2,1)  (1:n2)'/n2   zeros(n2,1);
      ones(n3,1)  ones(n3,1)   (1:n3)'/(n3)]