Metadata-Version: 2.1
Name: tasadofi
Version: 1.0.1
Summary: Python random numbers
Home-page: https://github.com/Raverss/Python-Random-Types
Author: Vojtech Molek
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

<h1 align="center">
<img src="https://github.com/Raverss/Python-Random-Types/blob/main/imgs/logo.png?raw=true" width="800">
</h1><br>

# **Tasadofi** - random python numerical types

This library wraps random number generation into classes inheriting from `int` and `float`. Every time a variable of random type is used, it has a different value, e.g. `1 + random_type` will have different return value everytime. This allows to inject randomness into code without having to alter it, i.e. making numerical parameter of a class random without changing class itself. The random type also remembers last n generated random values.

## Installation

`pip install tasadofi`

## Example

Let us consider a demonstrative class that generates sine signal with fixed noise value.
```
import numpy as np
from tasadofi.random_number import RndFloat

class Signal:
    def __init__(self, noise=0.1):
        self.noise = noise
        
    def generate_signal(self, length=100):
        # code to generate some signal
        signal = np.linspace(0, length/2*np.pi, length)  # Example signal: a sine wave
        signal = np.sin(signal)  # Example signal: a sine wave
        signal += self.noise
        return signal
```

Then generated signal will be identical each repetation. 

```
signal = Signal()
for _ in range(2):
    print(signal.generate_signal(length=5))
    # [ 0.1 1.02387953 -0.60710678 -0.28268343  1.1 ]
    # [ 0.1 1.02387953 -0.60710678 -0.28268343  1.1 ]
```

We can change this by using random type without touching underlying Signal class:

```
signal = Signal(noise=RndFloat('uniform', 0, 0.5))
for _ in range(2):
    print(signal.generate_signal(length=5))
    # [ 0.13548616  1.0593657  -0.57162062 -0.24719727  1.13548616]
    # [ 0.08913056  1.01301009 -0.61797623 -0.29355288  1.08913056]
```

We can also inspect last 10 generated values (or different number by using `set_cache_size(n)` function):
```
print(signal.noise)
# sampler uniform(0, 0.5)
# last 10 generated values [0.13548616468953223, 0.08913055526374658]
```

