function Read_HW3_Data load X_lrn_HW3.txt % Read the inputs - each row is one learning example input load Y_lrn_HW3.txt % Read the outputs- each row is one learning example output % Rename for convenience: X = X_lrn_HW3; Y = Y_lrn_HW3; [N,d] = size(X) % Get the number of examples and the dimension of the input