The function f(x) checks if an input string contains any numerical digits, including integers and floats. If the string contains any numerical digits, it returns True. Otherwise, it returns False.

[CODE]:
```python
def f(x):
    for char in x:
        if char.isdigit():
            return True
    return False
```

Please let me know if you would like further experiments or any additional information.