# f16tof32

> Returns the floating point representation of a half-precision floating point value.

## Definition

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

## f16tof32(uint)

Returns the floating point representation of a half-precision floating point value.

```csharp
public static float f16tof32(uint x)
```

### Parameters

**** (\[uint]\(https\://learn.microsoft.com/dotnet/api/system.uint32)): The half precision float.

### Returns

| Type                                                          | Description                                                            |
| ------------------------------------------------------------- | ---------------------------------------------------------------------- |
| [float](https://learn.microsoft.com/dotnet/api/system.single) | The single precision float representation of the half precision float. |

## f16tof32(uint2)

Returns the floating point representation of a half-precision floating point vector.

```csharp
public static float2 f16tof32(uint2 x)
```

### Parameters

**** (\[uint2]\(/engine/6000.6/script-reference/unity/mathematics/uint2)): The half precision float vector.

### Returns

| Type                                                                  | Description                                                                          |
| --------------------------------------------------------------------- | ------------------------------------------------------------------------------------ |
| [float2](/engine/6000.6/script-reference/unity/mathematics/float2.md) | The single precision float vector representation of the half precision float vector. |

## f16tof32(uint3)

Returns the floating point representation of a half-precision floating point vector.

```csharp
public static float3 f16tof32(uint3 x)
```

### Parameters

**** (\[uint3]\(/engine/6000.6/script-reference/unity/mathematics/uint3)): The half precision float vector.

### Returns

| Type                                                                  | Description                                                                          |
| --------------------------------------------------------------------- | ------------------------------------------------------------------------------------ |
| [float3](/engine/6000.6/script-reference/unity/mathematics/float3.md) | The single precision float vector representation of the half precision float vector. |

## f16tof32(uint4)

Returns the floating point representation of a half-precision floating point vector.

```csharp
public static float4 f16tof32(uint4 x)
```

### Parameters

**** (\[uint4]\(/engine/6000.6/script-reference/unity/mathematics/uint4)): The half precision float vector.

### Returns

| Type                                                                  | Description                                                                          |
| --------------------------------------------------------------------- | ------------------------------------------------------------------------------------ |
| [float4](/engine/6000.6/script-reference/unity/mathematics/float4.md) | The single precision float vector representation of the half precision float vector. |
