実行中のスクリプトのtableの中身をテスト用に書き換えたい
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Kev Wat
el 6 de Nov. de 2018
Respondida: Kev Wat
el 7 de Nov. de 2018
Matlab初心者です。
作成したモジュールの機能確認の為に、実行中のスクリプトのtableの中身を手動で変更したいです。 スクリプト実行後にtableの値は書き換えできそうですが、どのようにすれば、試験データに書き換えることができるでしょうか?
0 comentarios
Respuesta aceptada
mizu
el 6 de Nov. de 2018
「試験データ」が何を指すのかわかりませんが,変数エディタ上で値を変更することができますよ. 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 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre ワークスペース変数と MAT ファイル en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!