how to create a single column matrix from two matrices in MATLAB
1 次查看(过去 30 天)
显示 更早的评论
Hi all,
I have tow matrcies A=[1,2,3,4] and B= [7,4,6]. I want to combine it in a single column matrix.
Can anyone help me in this regrad?
thanks in advance
1 个评论
Calequela Manuel
2022-6-21
编辑:Calequela Manuel
2022-6-21
A=[1,2,3,4];
B= [7,4,6];
Resolution:
T = ([A B])'
T = ([1 2 3 4 7 4 6])'
T = 1
2
3
4
7
4
6
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!