Chapter 6: Problem 1
The file src/files/xy.dat contains two columns of numbers, corresponding to \(x\) and \(y\) coordinates on a curve. The start of the file looks as this: \(\begin{array}{cc}-1.0000 & -0.0000 \\ -0.9933 & -0.0087 \\ -0.9867 & -0.0179 \\ -0.9800 & -0.0274 \\ -0.9733 & -0.0374\end{array}\) Make a program that reads the first column into a list \(\mathrm{x}\) and the second column into a list y. Then convert the lists to arrays, and plot the curve. Print out the maximum and minimum \(y\) coordinates. (Hint: Read the file line by line, split each line into words, convert to float, and append to \(\mathrm{x}\) and y.) Name of program file: read_2columns.py
Short Answer
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.