Posts
How to run a Netlify build when uploading changes to a Git submodule
Before I start writing anything in this post, I will say that the method I am going to explain comes from a blog post over at flaviopost. I did not like the very short explanation as a rookie on his site, so I’ll try to elaborate here.
What is the issue even to start with?
Well, you know if …
Preparing Time Series Data For Neural Network Inputs
While working on my master’s thesis I needed some processing of temporal data such that it could be used as an input in TensorFlow Keras. Here I stumbled across the TimeseriesGenerator, which is a function from the Keras library. However, this is no longer recommended to be used by TensorFlow. …
Fixed Point CORDIC
This post was written as a part of my exam preparation for the course in Low Energy and Reconfigurable Systems at AAU. It is a write-up from a mini project done in cooperation with two of my fellow students. The mini project goes through an architectural design of the CORDIC algorithm for …
Bode Plots in Python
This notebook will go through a pratical example of how to do bode plots in Python and how to find several other control related charateristics. We’ll look at an actual transfer function and derive all the information from that.
Let’s start off by importing the Python libraries that we …