Non-Linear Dynamics Trajectories with Python by Ritobrata Ghosh Introduction In this Notebook, trajectories of the Logistic Map [1] is plotted with Python. import numpy as npimport matplotlib.pyplot as plt def logistic_function(parameter: float, initial_value: float) ->float:return parameter * initial_value * (1- initial_value) def logistic_function_trajectory(parameter: float, initial_value: float, num_iter: int) -> np.array: trajectory = np.zeros(num_iter) trajectory[0] = initial_valuefor i...| Posts by Rito Ghosh
Stuff About Complex Number I Wish Somebody Told Me by Rito Ghosh Introduction There are many places that teach you complex number like High School, college classes, YouTube channels, and so on. But they earlier ones often heavy on solving problems by-hand, and almost every time, they do only that. The latter ones focus mainly on shiny visuals or advanced properties that are not intended for the uninitiated. This is a piece written for both people who are getting introduced to Complex Numbers ...| Posts by Rito Ghosh
Introduction Natural Language Processing is a fast-advancing field. And it is also one of the fields that require a huge amount of computational resources to make important progress. And although breakthroughs are openly announced, and papers are released in free-to-access repositories such as arXiv, Open Review, Papers with Code, etc., and despite (sometimes) having the code freely available on GitHub, using those language models is not something widely accessible and easy. Let me provide mo...| Posts by Rito Ghosh
Implementing a Boolean Function| ritog.github.io
Solving First Order Differential Equations with Julia| ritog.github.io