Continue next statement on cd command

1 回表示 (過去 30 日間)
LEONG SING YEW
LEONG SING YEW 2020 年 3 月 8 日
コメント済み: John D'Errico 2020 年 3 月 12 日
Hi everyone
Is there a way to continue next line on this cd command? this is to make convenient for me to analyse data
cd 'D:\Onedrive\OneDrive -xxx\bbb\ccc\ddd\3. Simulation\3. Fluent Case\40um - 9\EquivalenceRatio_Osc\0.015\F100';
i tried this but it won't work
cd ['D:\Onedrive\OneDrive -xxx\bbb\ccc\ddd\3. Simulation\3. Fluent Case\40um - 9'...
'\EquivalenceRatio_Osc\0.015\F100'];

採用された回答

John D'Errico
John D'Errico 2020 年 3 月 8 日
Use cd as a FUNCTION call.
cd(['D:\Onedrive\OneDrive -xxx\bbb\ccc\ddd\3. Simulation\3. Fluent Case\40um - 9'...
'\EquivalenceRatio_Osc\0.015\F100']);
Commands like CD are actually functions, where they can be used in either mode, either as a command or as a function.
  3 件のコメント
Stephen23
Stephen23 2020 年 3 月 8 日
編集済み: Stephen23 2020 年 3 月 8 日
John D'Errico
John D'Errico 2020 年 3 月 12 日
Stephen is correct here, in that when you change directories, this forces MATLAB to do some additional work. However, when you just specifiy the directory to look in to read a file, that other work need not be done. As such, MATLAB will be more efficient.
Save those CPU cycles!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeWorkspace Variables and MAT-Files についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by