LoginSignup
3
1

More than 1 year has passed since last update.

Matlabからpowershell スクリプトを実行する

Last updated at Posted at 2022-06-08

Matlab mファイルから powershell スクリプトを読み出す方法です。

% Execute powershell script
op = "text.txt"
command = ['!powershell -NoProfile -ExecutionPolicy Remotesigned -File .\exec-samplescript.ps1 -File'];

command = [ command ' ' op];
eval(command);

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1