フィルターのクリア

Flexible use of fullfile

1 回表示 (過去 30 日間)
Thang  Le
Thang Le 2014 年 3 月 5 日
編集済み: per isakson 2018 年 2 月 22 日
Hi,
I have the following line in my script:
roi = spm_select('FPList', fullfile(roi_path), '^RA.*\.mat$');
Depending on the type of image I want to process, sometimes I need to replace RA with either S4RA, S6RA, S8RA etc. In the earlier part of my script, I have an input called Configuration (e.g., Configuration = 'RA'). I intend to use this input to change the type of image when necessary. Could anyone tell me how to work Configuration into the line of script above so that when I change the configuration to say, S4RA, the line above will change accordingly from RA to S4RA without my having to do it manually? I hope this is clear. Thank you!

採用された回答

Walter Roberson
Walter Roberson 2014 年 3 月 5 日
roi = spm_select('FPList', fullfile(roi_path), ['^' Configuration '.*\.mat$']);
or
roi = spm_select('FPList', fullfile(roi_path), sprintf('^%s.*\\.mat$', Configuration));
Notice the change from \. to \\. when using sprintf.
  1 件のコメント
Thang  Le
Thang Le 2014 年 3 月 5 日
This is great! I've just started using sprintf so this is a good lesson. Thank you so much, Walter.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by