Need help creating a matrix that updates based on input to a GUI

2 ビュー (過去 30 日間)
Rusty
Rusty 2012 年 5 月 24 日
I am creating a GUI that allows users to input 3 data points through edit text boxes. The user will then click a push button and the data will be added to a matrix.
Currently, the matrix is a 3 by 1 and every time the push button is clicked, the old data is erased and the new data replaces it.
I need to know how to have the matrix add a column each time new data is entered and the push button is clicked.
I tried using the "." after the matrix variable name and MATLAB didn't like it.
Can anyone help with this?

採用された回答

Stephen
Stephen 2012 年 5 月 24 日
what if you did this:
matrix = [matrix; (button input)];
so m = [1 2 3] would go to
m = [1 2 3; 4 5 6]
with [4 5 6] as the input
  2 件のコメント
Rusty
Rusty 2012 年 5 月 25 日
I think this will work, I just need to move some things around. Thanks for your help!!!
Stephen
Stephen 2012 年 5 月 25 日
just remember to clear the value before running things again.
m=[]; at initialization

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by