Discussion Forum Guidelines
This course uses an online discussion forum (Piazza) to share questions that would usually come up on an individual basis during office hours. When used appropriately, most students find that their class experience is significantly enriched by asking and answering online questions. Though common sense is your best guide to what is "appropriate", here are some official guidelines:
Question: "I tried subtracting the vector mu from the matrix A and MATLAB keeps breaking with the error message "...". I've tried several things and can't figure out how to make MATLAB subtract mu from each column."
Poor Answer: "bsxfun(@minus, A, mu)"
Good Answer: "Look into MATLAB's documentation/help on bsxfun. MATLAB's minus function only works on matrices that are the same dimension; you actually want to perform several subtraction operations on the matrix A."