Operator operator /
operator /(SymbolicTensorDim, SymbolicTensorDim)
Divides two SymbolicTensorDim dimensions a whole number of times. The method throws an error if the result has a remainder.
Declaration
public static SymbolicTensorDim operator /(SymbolicTensorDim a, SymbolicTensorDim b)
Parameters
| Type | Name | Description |
|---|---|---|
| SymbolicTensorDim | a | The LHS 'SymbolicTensorDim' of the operation. |
| SymbolicTensorDim | b | The RHS 'SymbolicTensorDim' of the operation. |
Returns
| Type | Description |
|---|---|
| SymbolicTensorDim | The result of the divide operation. |
operator /(int, SymbolicTensorDim)
Divides an int by a SymbolicTensorDim a whole number of times. The method throws an error if the result has a remainder.
Declaration
public static SymbolicTensorDim operator /(int a, SymbolicTensorDim b)
Parameters
| Type | Name | Description |
|---|---|---|
| int | a | The LHS integer of the operation. |
| SymbolicTensorDim | b | The RHS 'SymbolicTensorDim' of the operation. |
Returns
| Type | Description |
|---|---|
| SymbolicTensorDim | The result of the divide operation. |
operator /(SymbolicTensorDim, int)
Divides a SymbolicTensorDim by an int a whole number of times. The method throws an error if the result has a remainder.
Declaration
public static SymbolicTensorDim operator /(SymbolicTensorDim a, int b)
Parameters
| Type | Name | Description |
|---|---|---|
| SymbolicTensorDim | a | The LHS 'SymbolicTensorDim' of the operation. |
| int | b | The RHS integer of the operation. |
Returns
| Type | Description |
|---|---|
| SymbolicTensorDim | The result of the divide operation. |