実行中のスクリプトのtableの中身をテスト用に書き換えたい
1 回表示 (過去 30 日間)
古いコメントを表示
採用された回答
mizu
2018 年 11 月 6 日
「試験データ」が何を指すのかわかりませんが,変数エディタ上で値を変更することができますよ. https://jp.mathworks.com/help/stats/manipulate-dataset-arrays-using-the-variable-editor.html
せっかくプログラミングをしているので,コードで書くほうが効率良さそうです. 変数Aの2列目を変更するのであればこんな感じで書いたらいいです.
>> A = ones(3,3)
A =
1 1 1
1 1 1
1 1 1
>> A(:,2) = [1 2 3]'
A =
1 1 1
1 2 1
1 3 1
0 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で ワークスペース変数と MAT ファイル についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!