|
MatrixZeros Method (Int32, Int32, Int32)
|
Creates a zero-valued rank-3 tensor.
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static double[,,] Zeros(
int rows,
int columns,
int depth
)
Public Shared Function Zeros (
rows As Integer,
columns As Integer,
depth As Integer
) As Double(,,)
Request Example
View SourceParameters
- rows
- Type: SystemInt32
The number of rows in the tensor. - columns
- Type: SystemInt32
The number of columns in the tensor. - depth
- Type: SystemInt32
The number of channels in the tensor.
Return Value
Type:
DoubleA matrix of the specified size.
See Also