Skip to content
View Kauseka's full-sized avatar

Block or report Kauseka

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Kauseka/README.md

import random import matplotlib.pyplot as plt # This library might need installation in some online compilers

Generate 100 random samples between -5 and 5

signal = [] for i in range(100): sample = random.uniform(-5, 5) signal.append(sample)

Plot the signal

plt.plot(signal) plt.xlabel('Sample Number') plt.ylabel('Voltage (V)') plt.title('Random Signal') plt.grid(True) plt.show()

Popular repositories Loading

  1. APMs APMs Public

    Forked from cityxen/APMs

    Anthropomorphic Computer AI Programs

    Assembly

  2. Kauseka Kauseka Public

    Config files for my GitHub profile.

  3. dl-eeg-playground dl-eeg-playground Public

    Forked from NeuroTechX/dl-eeg-playground

    Deep Learning EEG Playground

    Jupyter Notebook