How to push a variable in a vector in Matlab?

207 ビュー (過去 30 日間)
Manuel Ignacio
Manuel Ignacio 2013 年 2 月 7 日
回答済み: Jozef Lukac 2020 年 12 月 29 日
Something like this:
A = [1 2 3];
push(A, 4); % Something like Push
% A = [1 2 3 4]
Thanks.

採用された回答

Matt J
Matt J 2013 年 2 月 7 日
編集済み: Matt J 2013 年 2 月 7 日
A(end+1)=4;
or
A=[A,4];
  3 件のコメント
Khac Dat Nguyen
Khac Dat Nguyen 2019 年 4 月 24 日
about string array? help me
Matt J
Matt J 2019 年 4 月 24 日
This works for any array.

サインインしてコメントする。

その他の回答 (1 件)

Jozef Lukac
Jozef Lukac 2020 年 12 月 29 日
I have created an immitation of STL vector in Matlab. Check it out. :)

カテゴリ

Help Center および File ExchangeWhos についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by