I am having some trouble finding parallel vectors because of floating point precision. How can I determine if the vectors are parallel with some tolerance?
I also need a check for orthogonality with tolerance.
|
I am having some trouble finding parallel vectors because of floating point precision. How can I determine if the vectors are parallel with some tolerance? I also need a check for orthogonality with tolerance.
| |||||||
feedback
|
|
For vectors
where
for parallelity test and
for anti-parallelity. | |||||||||||
feedback
|
|
If you have 3D vectors the answer is simple. Compute the cross product and if it is nearly zero, your vectors are nearly parallel: http://mathworld.wolfram.com/ParallelVectors.html For 2d vectors you can convert them into 3D vectors just by adding a coordinate with zero (1;2) => (1;2;0), (4; 5.6) => (4; 5.6; 0) and so on Two vectors are orthogonal or perpendicular, if there dot product ist zero:
| |||||
|
feedback
|