# operator /

> Returns the result of a componentwise division operation on two uint3x4 matrices.

## Definition

* **Type:** Operator
* **Namespace:** [Unity.Mathematics](/engine/6000.7/script-reference/unity/mathematics.md)
* **Assembly:** UnityEngine.MathematicsModule

## operator /(uint3x4, uint3x4)

Returns the result of a componentwise division operation on two uint3x4 matrices.

```csharp
public static uint3x4 operator /(uint3x4 lhs, uint3x4 rhs)
```

### Parameters

**** (\[uint3x4]\(/engine/6000.7/script-reference/unity/mathematics/uint3x4)): Left hand side uint3x4 to use to compute componentwise division.**** (\[uint3x4]\(/engine/6000.7/script-reference/unity/mathematics/uint3x4)): Right hand side uint3x4 to use to compute componentwise division.

### Returns

| Type                                                                    | Description                                   |
| ----------------------------------------------------------------------- | --------------------------------------------- |
| [uint3x4](/engine/6000.7/script-reference/unity/mathematics/uint3x4.md) | uint3x4 result of the componentwise division. |

## operator /(uint3x4, uint)

Returns the result of a componentwise division operation on a uint3x4 matrix and a uint value.

```csharp
public static uint3x4 operator /(uint3x4 lhs, uint rhs)
```

### Parameters

**** (\[uint3x4]\(/engine/6000.7/script-reference/unity/mathematics/uint3x4)): Left hand side uint3x4 to use to compute componentwise division.**** (\[uint]\(https\://learn.microsoft.com/dotnet/api/system.uint32)): Right hand side uint to use to compute componentwise division.

### Returns

| Type                                                                    | Description                                   |
| ----------------------------------------------------------------------- | --------------------------------------------- |
| [uint3x4](/engine/6000.7/script-reference/unity/mathematics/uint3x4.md) | uint3x4 result of the componentwise division. |

## operator /(uint, uint3x4)

Returns the result of a componentwise division operation on a uint value and a uint3x4 matrix.

```csharp
public static uint3x4 operator /(uint lhs, uint3x4 rhs)
```

### Parameters

**** (\[uint]\(https\://learn.microsoft.com/dotnet/api/system.uint32)): Left hand side uint to use to compute componentwise division.**** (\[uint3x4]\(/engine/6000.7/script-reference/unity/mathematics/uint3x4)): Right hand side uint3x4 to use to compute componentwise division.

### Returns

| Type                                                                    | Description                                   |
| ----------------------------------------------------------------------- | --------------------------------------------- |
| [uint3x4](/engine/6000.7/script-reference/unity/mathematics/uint3x4.md) | uint3x4 result of the componentwise division. |
