For a bit of context, I am trying to create a series of 20000 scenarios given an input parameter of my choosing, and label those newly created files with a file name and the numeral of the paramter I am changing. Below is a portion of the script
function startup
cd ~/Desktop/program/scenario/
%
for X= 100:100:500
mkdir Scenario-NumberX %X is the changing variable which a file name will be made
cd ..
copyfile(['scenario','/*.prm'],'~/Desktop/program/scenario/Scenario-NumberX'
%under 'scenario' should be a number of files of my choosing with parameter files
% each iteration through the loop should be creating a file and placing it in the desired location.
end
Any and all help is appreciated!

2 件のコメント

Star Strider
Star Strider 2019 年 1 月 18 日
The mkdir function creates a new directory (folder) not a new file.
Are you sure you want to do that?
Charles Cummings
Charles Cummings 2019 年 1 月 18 日
Yes apologies, misspoke. I have prm files in another folder I am moving into it every iteration.

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

 採用された回答

Sean de Wolski
Sean de Wolski 2019 年 1 月 18 日

0 投票

for ii = 1:10
mkdir("Scenario" + x)
end

4 件のコメント

Charles Cummings
Charles Cummings 2019 年 1 月 18 日
mkdir only accepts character arrays. I have tried using mkdir in command syntax and as a function as you just did, but it hasnt worked.
Charles Cummings
Charles Cummings 2019 年 1 月 18 日
編集済み: Charles Cummings 2019 年 1 月 18 日
Also, I havent been able to use that scenario directory created inside of copyfile ie as a loaded variable
Sean de Wolski
Sean de Wolski 2019 年 1 月 18 日
This works in newer releases. In older releases
mkdir(['Scenario' num2str(ii)])
Charles Cummings
Charles Cummings 2019 年 1 月 18 日
Perfect thank you. The other issue was taking that name I created with mkdir and adding it to the end of copyfile. Tried this
copyfile(['scenario','/*.prm'],['~/Desktop/program/scenario/Scenario-NumberX' convertStringsToChars('Scenario100')])
Should I create a new thread?

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeFile Operations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by