SDC-Advanced-Lane-Finding icon indicating copy to clipboard operation
SDC-Advanced-Lane-Finding copied to clipboard

sir ,it can not run

Open jacksparal opened this issue 7 years ago • 1 comments

def predict(self, X1, X2):
    """Predict`lanes using the estimated model.
    Parameters
      X1, X2.
    Returns
      y1, y2
    """
    return X1 @ self.w1_, X2 @ self.w2_

it is in lane_simple_ransac.py. could you tell me what @ means here? thanks

jacksparal avatar Apr 02 '17 03:04 jacksparal

It's the matrix multiplication symbol, introduced in Python 3 if I am correct.

balancap avatar Apr 06 '17 09:04 balancap