From 2 vectors of n elements To n points
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi, if I have two vectors:
A=[
a1
a2
a3
a4
a5
a6
a7
]
and
B=[
b1
b2
b3
b4
b5
b6
b7
]
What's the command to create 7 points
p1=[a1, b1], p2=[a2,b2], ... p7=[a7,b7] ?
Thanks
0 comentarios
Respuesta aceptada
Más respuestas (2)
Azzi Abdelmalek
el 18 de Nov. de 2012
Editada: Azzi Abdelmalek
el 18 de Nov. de 2012
A=1:4
B=sin(t)
scatter(A,B)
0 comentarios
Matt Fig
el 18 de Nov. de 2012
P = [A,B];
Now point 1 is P(1,:). Point 2 is P(2,:), etc.
0 comentarios
Ver también
Categorías
Más información sobre Guidance, Navigation, and Control (GNC) en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!