本文整理汇总了TypeScript中angular2/src/facade/math.Math.pow方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Math.pow方法的具体用法?TypeScript Math.pow怎么用?TypeScript Math.pow使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类angular2/src/facade/math.Math
的用法示例。
在下文中一共展示了Math.pow方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: calculateRegressionSlope
static calculateRegressionSlope(xValues: List<number>, xMean: number, yValues: List<number>,
yMean: number) {
// See http://en.wikipedia.org/wiki/Simple_linear_regression
var dividendSum = 0;
var divisorSum = 0;
for (var i = 0; i < xValues.length; i++) {
dividendSum += (xValues[i] - xMean) * (yValues[i] - yMean);
divisorSum += Math.pow(xValues[i] - xMean, 2);
}
return dividendSum / divisorSum;
}
示例2:
samples.forEach(x => deviation += Math.pow(x - mean, 2));
示例3:
ListWrapper.forEach(sample, (x) => { deviation += Math.pow(x - mean, 2); });
示例4: instance
Ancestor} from 'angular2/src/core/annotations/visibility';
import {EventEmitter,
PropertySetter,
Attribute} from 'angular2/src/core/annotations/di';
import * as viewModule from 'angular2/src/core/compiler/view';
import {ViewContainer} from 'angular2/src/core/compiler/view_container';
import {NgElement} from 'angular2/src/core/dom/element';
import {Directive,
onChange,
onDestroy,
onAllChangesDone} from 'angular2/src/core/annotations/annotations';
import {BindingPropagationConfig} from 'angular2/change_detection';
import * as pclModule from 'angular2/src/core/compiler/private_component_location';
import {setterFactory} from 'angular2/src/render/dom/view/property_setter_factory';
var _MAX_DIRECTIVE_CONSTRUCTION_COUNTER = 10;
var MAX_DEPTH = Math.pow(2, 30) - 1;
var _undefined = new Object();
var _staticKeys;
class StaticKeys {
constructor() {
this.viewId = Key.get(viewModule.View).id;
this.ngElementId = Key.get(NgElement).id;
this.viewContainerId = Key.get(ViewContainer).id;
this.bindingPropagationConfigId = Key.get(BindingPropagationConfig).id;
this.privateComponentLocationId = Key.get(pclModule.PrivateComponentLocation).id;
}
static instance() {
if (isBlank(_staticKeys))
_staticKeys = new StaticKeys();
return _staticKeys;
}