当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Math.pow方法代码示例

本文整理汇总了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;
 }
开发者ID:AsherBarak,项目名称:angular,代码行数:11,代码来源:statistic.ts

示例2:

 samples.forEach(x => deviation += Math.pow(x - mean, 2));
开发者ID:1186792881,项目名称:angular,代码行数:1,代码来源:statistic.ts

示例3:

 ListWrapper.forEach(sample, (x) => { deviation += Math.pow(x - mean, 2); });
开发者ID:AsherBarak,项目名称:angular,代码行数:1,代码来源:statistic.ts

示例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;
  }
开发者ID:gdi2290,项目名称:sample-Angular2,代码行数:31,代码来源:element_injector.ts


注:本文中的angular2/src/facade/math.Math.pow方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。