Simple array addition question
1 次查看(过去 30 天)
显示 更早的评论
if I have a matrix [1,2] and I want to add a 3rd element [3] to make [1,2,3]
And what is this simple manipulation called? 2 hours of searching has got me nowhere.
Kind regards
RK
2 个评论
Jan
2012-11-20
编辑:Jan
2012-11-20
@Robert: The operation is called "concatenation". Such questions are exhaustively explained in the "Getting Started" chapter of the documentation. While it is strongly recommended to read them, because Matlab is a very powerful language, the forum is not the right place to learn the very basics. Thanks.
采纳的回答
per isakson
2012-11-20
Hint:
x = [ 1, 2 ];
x(end+1) = 3;
or
x = cat( 2, x, 3 );
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!