How to create a vector from two or three point?

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 ?

 Réponse acceptée

A = [1,2]
B = [6,3]
C = [1,5]
AB = B - A
AC = C - A
The same with three points

3 commentaires

AnhThu Le
AnhThu Le le 9 Sep 2017
I want to create a function to calculate the vector, I can input the what number I need to calculate
function [vector] = calculate_vector(A,B)
vector = B - A;
end

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Aerospace Blockset dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by