フィルターのクリア

Convert string to variable

6 ビュー (過去 30 日間)
Maine MacConville
Maine MacConville 2016 年 3 月 5 日
回答済み: Rushil Shah 2020 年 6 月 4 日
Just to be clear: this isn't to generate a string name (unless this would solve my problem).
I've a script that reads some images into the workspace - for simplicity let's say there are 3 and they're called pic1, pic2, and pic3. Later I have a loop function that should do some work on each of the pictures. So for a "for" loop from 1 to N, I'd want picN = pic1 when N = 1, picN = pic2 when N = 2 etc. I've tried typing picN = sprintf('pic_%d', N) but this is giving me a string output, when what I want to do is to say that a newly defined variable is equal to an already-known variable.
Any help would be appreciated.
  3 件のコメント
rajasweta datta
rajasweta datta 2017 年 5 月 30 日
Hii I guess you have probably figured it out but here it goes.. you can save the variable name as string in a array string={'pic1','pic2','pic3'}; for i=1:3 pictoprocess=eval(string{i}); %do all your processing on pictoprocess end
Jan
Jan 2017 年 5 月 30 日
編集済み: Jan 2017 年 5 月 30 日
@rajasweta datta: Do not do this. See https://www.mathworks.com/matlabcentral/answers/304528-tutorial-why-variables-should-not-be-named-dynamically-eval and hundrets of corresponding thread. eval is a shot in your knee. eval is not a solution, but it supports the very bad idea to hide indices in the names of the variables.

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

回答 (3 件)

Star Strider
Star Strider 2016 年 3 月 5 日
If I understand your Question correctly, you are about to invoke the wrath of those here who are absolutely opposed to dynamic variables (although this would be appropriate if frequently overstated).
With respect to the names, you could use the strcmp function. I cannot understand what else you want to do sufficiently to provide precise Answers.

Walter Roberson
Walter Roberson 2016 年 3 月 5 日
pics = {pic1, pic2, pic3};
for i = 1 : 3
picN = pics{i};
...
end

Rushil Shah
Rushil Shah 2020 年 6 月 4 日
You can change the code shown in the above link.
Give values in your case picture path and assign it as the variable name.
Although it'll be in char data type.
I hope this helps you to solve your problem.

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by