From 2 vectors of n elements To n points
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
その他の回答 (2 件)
Azzi Abdelmalek
2012 年 11 月 18 日
編集済み: Azzi Abdelmalek
2012 年 11 月 18 日
A=1:4
B=sin(t)
scatter(A,B)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Guidance, Navigation, and Control (GNC) についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!