Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
UITABLE を使用してデータを表示しています。テーブルを表示した後、コマンドウィンドウでデータをマトリックス形式で取得し、計算を行い、結果を表形式で再度表示します。任意の 1 pls。助けて..
テーブルを作成するときは、そのハンドルを取得します。
hTable = uitable(...,'Data', dat,...);
変更を加えます。データを取得します。
dat = get(hTable,'Data');
いくつかの計算を行い、新しいデータを生成します。テーブルを更新します。
set(hTable,'Data',dat);