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.
あなたができるように、matlab guiでuitableの内容をクリアする方法はありますか
cla(handles.axes1) % 軸をクリアします。
私はuitableを削除したくありません。データをクリアする必要があるだけです。
データを削除できます。
t = uitable; % or however you initialize it set(t,'Data',[])
または単にそれを非表示にします、データなどはまだテーブルにあります
set(t,'Visible','off')
あなたはおそらく最初のものが欲しいでしょう、しかし私は私が両方を提供すると思いました。