Changeset 773b1aaa4d499355bbb43163cae75206cda242a3
- Timestamp:
- 05/23/08 17:19:42
(5 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1211563182 +0000
- git-parent:
[197579c398b7365b2eea60f9b2245fdf72ada185]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1211563182 +0000
- Message:
calc on demand
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r892209a |
r773b1aa |
|
| 66 | 66 | $this->addGuide($name, $this->percentile[$p], $config); |
|---|
| 67 | 67 | } |
|---|
| 68 | | function min() { return $this->percentile[0]; } |
|---|
| 69 | | function max() { return $this->percentile[100]; } |
|---|
| | 68 | function min() { $this->__calc(); return $this->percentile[0]; } |
|---|
| | 69 | function max() { $this->__calc(); return $this->percentile[100]; } |
|---|
| 70 | 70 | function calcPercentile($p) { |
|---|
| 71 | 71 | if($this->units) throw Exception("Already calculated percentiles"); |
|---|