Systemを利用してMATLABでコマンドプロンプトの実行をする。
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
コマンドプロンプト上で
cd/d”ファイルのパスを指定”
というコマンドを利用しており、これをMATLAB上のsystem()を利用して実現したいと考えています。
system(cd/d"ファイルのパス")
と書きたいのですが、pwdコマンドを使って取得したファイルのパスをどのように指定すれば良いでしょうか。
0 commentaires
Réponses (1)
michio
le 24 Mai 2018
MATLAB の pwd コマンドの結果は文字列で帰ってきますので、
system(['cd ', pwd]);
と 'cd ' (cd + スペース) と文字列の連結して system コマンドに入力する方法でいかがでしょうか?
['cd ', pwd]
で確認してみてください。
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!