function[weights]=regression(train_data_X,train_data_Y)%JUSTONELINEOFCODEweights=inv(train_data_X'*train_data_X)*train_data_X'*train_data_Y;return;