![]() |
Question 7; calculating slope in Python
Hi I was trying to implement this in Python. To get the target function which is a line of form y = mx+c, I started by calculating the slope (m). If line passes through the points (x1,y1) and (x2,y2) then m = (y2-y1)/(x2-x1). But as you know these points are randomly picked and in some cases I get (x2-x1) = 0; which generates divide by zero exception.
My question is How did you deal with this problem?? |
Re: Question 7; calculating slope in Python
How are you generating your random points? If you use numpy to generate the coordinates of one point, it shouldn't happen. Try this:
Code:
x, y = np.random.uniform(-1,1,2) |
All times are GMT -7. The time now is 04:41 AM. |
Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.
The contents of this forum are to be used ONLY by readers of the Learning From Data book by Yaser S. Abu-Mostafa, Malik Magdon-Ismail, and Hsuan-Tien Lin, and participants in the Learning From Data MOOC by Yaser S. Abu-Mostafa. No part of these contents is to be communicated or made accessible to ANY other person or entity.