How to create a vector from two or three point?
25 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
AnhThu Le
il 9 Set 2017
Commentato: Jose Marques
il 9 Set 2017
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 Commenti
Risposta accettata
Jose Marques
il 9 Set 2017
A = [1,2]
B = [6,3]
C = [1,5]
AB = B - A
AC = C - A
The same with three points
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!