Constants
title: "Constants"
author: "Raja CSP Raman"
date: 2019-04-20
description: "-"
type: technical_note
draft: false
from scipy.constants import pi
from scipy.constants import golden
from scipy.constants import G
from scipy.constants import speed_of_light as sol
Score: 10
Cumulatiave Distribution Function 1
title: "Cumulative Distribution Function"
author: "Raja CSP Raman"
date: 2019-05-06
description: "-"
type: technical_note
draft: false
import numpy as np
import matplotlib.pyplot as plt
data = np.loadtxt('random_timestamp.txt')
print(data)
# Choose how many bins you want here
num_bins = 20
# Use the histogram function to bin the data
counts, bin_edges …
Read More
Cumulatiave Distribution Function 2
title: "Cumulative Distribution Function 2"
author: "Raja CSP Raman"
date: 2019-05-06
description: "-"
type: technical_note
draft: false
import numpy as np
import matplotlib.pyplot as plt
data = np.loadtxt('random_timestamp.txt')
print(data)
sorted_data = np.sort(data)
yvals=np.arange(len(sorted_data))/float(len(sorted_data)-1)
plt.plot(sorted_data,yvals)
plt …
Read More
Fft-And-Ifft
title: "FFT and IFFT"
author: "Raja CSP Raman"
date: 2019-05-06
description: "-"
type: technical_note
draft: false
from scipy.fftpack import fft, ifft
import numpy as np
x = np.array([1, 2, 4, 5])
array([12.+0.j, -3.+3.j, -2 …
Read More
Fourier-Transform
title: "Fourier Transform"
author: "Raja CSP Raman"
date: 2019-05-06
description: "-"
type: technical_note
draft: false
from scipy.fftpack import fft
import numpy as np
x = np.array([1, 2, 3, 4])
array([10.+0.j, -2.+2.j, -2.+0.j …
Read More