実行中のスクリプトのtableの中身をテスト用に書き換えたい
조회 수: 2 (최근 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!