Last change
on this file since 25367 was 25367, checked in by adhikari, 5 years ago |
NEW: matlab package for analyzing spherical harmonics based on Max Tegmark's HEALpix tool
|
-
Property svn:executable
set to
*
|
File size:
837 bytes
|
Line | |
---|
1 | %% hpStat
|
---|
2 | % Compute descriptive statistics of a pixel value list
|
---|
3 |
|
---|
4 | %% Syntax
|
---|
5 | % stats = hpStat(v)
|
---|
6 |
|
---|
7 | %% Input Arguments
|
---|
8 | % v array of HEALPix pixel values
|
---|
9 |
|
---|
10 | %% Output Arguments
|
---|
11 | % stats struct
|
---|
12 | % field contents
|
---|
13 | % ntot total number of data points
|
---|
14 | % nvalid number n of valid data points
|
---|
15 | % mind minimum of valid data
|
---|
16 | % maxd maximum of valid data
|
---|
17 | % average average of valid points
|
---|
18 | % absdev absolute deviation
|
---|
19 | % var variance
|
---|
20 | % stddev standard deviation
|
---|
21 | % skew skewness factor
|
---|
22 | % kurt kurtosis factor
|
---|
23 |
|
---|
24 | %% Example
|
---|
25 | % display stats of Y_3^1
|
---|
26 | v = ylm(32,3,1,'real',true);
|
---|
27 | stats = hpStat(abs(v))
|
---|
28 |
|
---|
29 | %%
|
---|
30 | % Copyright 2010-2011 Lee Samuel Finn. <mealpix_notices.html Terms of Use>. |
---|
Note:
See
TracBrowser
for help on using the repository browser.