MATLAB: Find an orthogonal vector

matrixorthogonal

I have the following matrix: M = [3 18 0;-3 -2 5;-1 5 0;3 3 -9]
I need to find a vector that's orthogonal to all of the vectors in this matrix. I'm familiar with how to solve for a vector that's orthogonal to two vectors (solving for lambda and multiplying lambda by a vector), but not sure how to solve for multiple vectors. Any help is appreciated!

Best Answer

Never call a variable O. Consider how difficult it will be to find the bug one day, when you see or write a zero, instead of O. And consider that in some fonts, the difference between them is very slight.
As to the question, use null.
help null
Related Question