How to create a vector from two or three point?
7 次查看(过去 30 天)
显示 更早的评论
a) A(1,2) B(6,3) C (1,5) b)A(5,9,8) B(7,5,4) C(5,7,8) How to create vector AB and AC ?
0 个评论
采纳的回答
Jose Marques
2017-9-9
A = [1,2]
B = [6,3]
C = [1,5]
AB = B - A
AC = C - A
The same with three points
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 NaNs 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
