本文整理了Java中gov.sandia.cognition.math.matrix.Vector.increment()
方法的一些代码示例,展示了Vector.increment()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Vector.increment()
方法的具体详情如下:
包路径:gov.sandia.cognition.math.matrix.Vector
类名称:Vector
方法名:increment
[英]Increments the value of the given index by 1.
[中]将给定索引的值增加1。
代码示例来源:origin: gov.sandia.foundry/gov-sandia-cognition-learning-core
output.increment(newIndex, entry.getValue());
output.increment(-newIndex, -entry.getValue());
代码示例来源:origin: algorithmfoundry/Foundry
output.increment(newIndex, entry.getValue());
output.increment(-newIndex, -entry.getValue());
代码示例来源:origin: algorithmfoundry/Foundry
output.increment(newIndex, entry.getValue());
output.increment(-newIndex, -entry.getValue());
代码示例来源:origin: algorithmfoundry/Foundry
@Override
public Vector times(
final Vector vector)
{
vector.assertDimensionalityEquals(this.getNumColumns());
final Vector result = vector.getVectorFactory().createVector(
this.getNumRows());
for (final MatrixEntry entry : this)
{
result.increment(entry.getRowIndex(),
entry.getValue() * vector.get(entry.getColumnIndex()));
}
return result;
}
代码示例来源:origin: gov.sandia.foundry/gov-sandia-cognition-common-core
@Override
public Vector times(
final Vector vector)
{
vector.assertDimensionalityEquals(this.getNumColumns());
final Vector result = vector.getVectorFactory().createVector(
this.getNumRows());
for (final MatrixEntry entry : this)
{
result.increment(entry.getRowIndex(),
entry.getValue() * vector.get(entry.getColumnIndex()));
}
return result;
}
代码示例来源:origin: algorithmfoundry/Foundry
@Override
public Vector times(
final Vector vector)
{
vector.assertDimensionalityEquals(this.getNumColumns());
final Vector result = vector.getVectorFactory().createVector(
this.getNumRows());
for (final MatrixEntry entry : this)
{
result.increment(entry.getRowIndex(),
entry.getValue() * vector.get(entry.getColumnIndex()));
}
return result;
}
代码示例来源:origin: gov.sandia.foundry/gov-sandia-cognition-common-core
@Override
public Vector times(
final Matrix matrix)
{
// This is a generic implementation to support interoperability.
// Sub-classes should make custom ones for performance.
this.assertDimensionalityEquals(matrix.getNumRows());
final int n = matrix.getNumColumns();
final Vector result = this.getVectorFactory().createVector(n);
for (final MatrixEntry entry : matrix)
{
result.increment(entry.getColumnIndex(),
this.get(entry.getRowIndex()) * entry.getValue());
}
return result;
}
代码示例来源:origin: algorithmfoundry/Foundry
@Override
public Vector times(
final Matrix matrix)
{
// This is a generic implementation to support interoperability.
// Sub-classes should make custom ones for performance.
this.assertDimensionalityEquals(matrix.getNumRows());
final int n = matrix.getNumColumns();
final Vector result = this.getVectorFactory().createVector(n);
for (final MatrixEntry entry : matrix)
{
result.increment(entry.getColumnIndex(),
this.get(entry.getRowIndex()) * entry.getValue());
}
return result;
}
代码示例来源:origin: algorithmfoundry/Foundry
@Override
public Vector times(
final Matrix matrix)
{
// This is a generic implementation to support interoperability.
// Sub-classes should make custom ones for performance.
this.assertDimensionalityEquals(matrix.getNumRows());
final int n = matrix.getNumColumns();
final Vector result = this.getVectorFactory().createVector(n);
for (final MatrixEntry entry : matrix)
{
result.increment(entry.getColumnIndex(),
this.get(entry.getRowIndex()) * entry.getValue());
}
return result;
}
代码示例来源:origin: gov.sandia.foundry/gov-sandia-cognition-common-core
for (final MatrixEntry entry : this)
result.increment(entry.getColumnIndex(),
entry.getValue() * vector.get(entry.getRowIndex()));
代码示例来源:origin: algorithmfoundry/Foundry
for (final MatrixEntry entry : this)
result.increment(entry.getColumnIndex(),
entry.getValue() * vector.get(entry.getRowIndex()));
代码示例来源:origin: algorithmfoundry/Foundry
for (final MatrixEntry entry : this)
result.increment(entry.getColumnIndex(),
entry.getValue() * vector.get(entry.getRowIndex()));
代码示例来源:origin: gov.sandia.foundry/gov-sandia-cognition-learning-core
for (int i = 0; i < this.dataSize; i++)
errors.increment(i, biasChange);
代码示例来源:origin: algorithmfoundry/Foundry
for (int i = 0; i < this.dataSize; i++)
errors.increment(i, biasChange);
代码示例来源:origin: algorithmfoundry/Foundry
for (int i = 0; i < this.dataSize; i++)
errors.increment(i, biasChange);
内容来源于网络,如有侵权,请联系作者删除!