Sir
I wanted to take float datas from a file sink and plot those values .
I am using the below python script for this.
I need to change my x -axis and y-axis limits.
What command should i add to this script for this task?
#!/usr/bin/env python
from array import array
import matplotlib.pyplot as plt
input_file = open(‘mySID_output’,‘r’)
float_array = array(‘d’)
float_array.fromstring(input_file.read())
#print float_array
plt.plot(float_array)
plt.show()
Thank you